🆕接入验证码组件

This commit is contained in:
coward
2024-03-06 17:13:29 +08:00
parent 7fd186d298
commit c820672f89
9 changed files with 151 additions and 2 deletions

6
http/param/user.go Normal file
View File

@@ -0,0 +1,6 @@
package param
type Login struct {
Account string `json:"account" form:"account" binding:"required"`
Password string `json:"password" form:"password" binding:"required"`
}