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

3
go.mod Normal file
View File

@@ -0,0 +1,3 @@
module git.bhouse.cdsau.net/frederick.holland/bh_go_models
go 1.22.2

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"`
}