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
+8
View File
@@ -0,0 +1,8 @@
package schema
type Variable struct {
Name string `json:"name"`
Type string `json:"type"`
Value any `json:"value,omitempty"`
Array *Array `json:"array,omitempty"`
}