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
+9
View File
@@ -0,0 +1,9 @@
package schema
type Project struct {
ProjectName string `json:"projectName"`
Platform string `json:"platfrom"`
GenerateType int `json:"generateType"`
Information Information `json:"information"`
Devices []*Device `json:"devices"`
}