Initial commit

This commit is contained in:
Frederick Holland
2025-10-16 20:16:01 +11:00
commit fec40f8b74
2 changed files with 12 additions and 0 deletions

9
models/user.go Normal file
View File

@@ -0,0 +1,9 @@
package models
type User struct {
Id string `gorm:"primaryKey" json:"id"`
Firstname string `json:"firstname"`
Lastname string `json:"lastname"`
Email string `json:"email"`
Username string `json:"username"`
}