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 Array struct {
Start int `json:"start"`
End int `json:"end"`
Values []any `json:"values"`
}