This commit is contained in:
vipg
2026-02-09 16:49:18 +08:00
parent 6640f09639
commit bdb1065217
6 changed files with 261 additions and 141 deletions

View File

@@ -0,0 +1,11 @@
package model
type RegisterReq struct {
Account string `json:"account"`
Password string `json:"password"`
}
type LoginReq struct {
Account string `json:"account"`
Password string `json:"password"`
}