This commit is contained in:
2024-08-01 02:44:06 +08:00
parent 1860e3666d
commit a8891902c6
11 changed files with 121 additions and 57 deletions

View File

@@ -9,7 +9,7 @@ package serializers
import "go_blog/models"
type Login struct {
Username string `form:"usernmae"; json:"username"`
Username string `form:"username"; json:"username"`
Password string `form:"password"; json:"password"`
}