Release v0.20: регистрация, авторизация, личный кабинет

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
shop
2026-05-16 17:31:56 +03:00
parent 4ea2b429b3
commit b3e3a06858
23 changed files with 981 additions and 27 deletions
+10
View File
@@ -0,0 +1,10 @@
package models
import "time"
type User struct {
ID int
Email string
Name string
CreatedAt time.Time
}