This commit is contained in:
2026-02-15 17:16:22 +03:00
commit 14815e521b
7 changed files with 257 additions and 0 deletions

8
model/user.go Normal file
View File

@@ -0,0 +1,8 @@
package model
type User struct {
Model
Login string `json:"login" gorm:"unique"`
Password string `json:"-"`
}