Files
VLoop/internal/account/entity.go

8 lines
162 B
Go
Raw Normal View History

package account
type User struct {
ID uint `gorm:"primaryKey" json:"id"`
Username string `gorm:"unique" json:"username"`
Password string `json:"-"`
}