2023-12-24 15:17:21 +08:00
|
|
|
package request
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
|
|
)
|
|
|
|
|
|
|
|
type RegisterReq struct {
|
2023-12-26 15:34:38 +08:00
|
|
|
g.Meta `path:"/register" tags:"注册" method:"post" summary:"注册账号"`
|
2023-12-24 15:17:21 +08:00
|
|
|
}
|
2023-12-26 15:34:38 +08:00
|
|
|
type LoginReq struct {
|
|
|
|
g.Meta `path:"/login" tags:"登录" method:"get" summary:"登录账号"`
|
2023-12-24 15:17:21 +08:00
|
|
|
}
|
2023-12-26 15:34:38 +08:00
|
|
|
|
|
|
|
type RegisterRes struct{}
|
|
|
|
type LoginRes struct{}
|