first commit

This commit is contained in:
Adrian Zürcher
2025-10-08 15:02:07 +02:00
commit 75ea1362a8
16 changed files with 1361 additions and 0 deletions

6
models/attendees.go Normal file
View File

@@ -0,0 +1,6 @@
package models
type Attendees struct {
FirstName int `json:"firstName"`
LastName string `json:"lastName"`
}