fix: improvement response api and docs

This commit is contained in:
ericprd
2025-02-25 11:25:36 +08:00
parent 81c7a51256
commit aee94a5c9c
5 changed files with 210 additions and 10 deletions
+1 -1
View File
@@ -7,7 +7,7 @@ type LoginReq struct {
Password string `json:"password" validate:"required"`
}
type LoginResponse struct {
type AuthResponse struct {
Token string `json:"token"`
}