first commit

This commit is contained in:
Adrian Zuercher
2025-08-21 08:07:00 +02:00
commit 2446bb11a0
5 changed files with 309 additions and 0 deletions

7
models/data.go Normal file
View File

@@ -0,0 +1,7 @@
package models
type Data struct {
Action string `json:"action"`
Topic string `json:"topic"`
Data any `json:"data"`
}