loveuer 090253a752
All checks were successful
/ build ushare (push) Successful in 4s
/ clean (push) Successful in 0s
feat: 0.1.2
1. login page && auth required
  2. file dir cleanup
2025-05-12 09:35:53 +08:00

11 lines
225 B
Go

package model
type User struct {
Id int `json:"id"`
Username string `json:"username"`
Key string `json:"key"`
Password string `json:"-"`
LoginAt int64 `json:"login_at"`
Token string `json:"token"`
}