This commit is contained in:
2025-03-13 02:51:40 -04:00
parent 46d93a62a1
commit 5657d40c02
24 changed files with 1133 additions and 31 deletions

View File

@ -0,0 +1,8 @@
package models
type User struct {
ID uint32 `gorm:"primaryKey"`
Username string
Password string
}