2025-03-13 02:51:40 -04:00

9 lines
103 B
Go

package models
type User struct {
ID uint32 `gorm:"primaryKey"`
Username string
Password string
}