initial commit lets start to have some fun

This commit is contained in:
Adrian Zuercher
2026-08-28 18:09:16 +02:00
commit 914fc7c5e9
9 changed files with 63 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
package schema
type Device struct {
Name string `json:"name"`
Tasks []*Task `json:"tasks"`
Globals []*Global `json:"globals"`
}