PersonalMain-Golang/api/request/tokenApi.go

14 lines
350 B
Go
Raw Normal View History

2023-12-25 02:15:59 +08:00
package request
import "github.com/gogf/gf/v2/frame/g"
type TokenCreateReq struct {
g.Meta `path:"/create" tags:"创建" method:"get" summary:"创建 TokenServiceImpl"`
2023-12-25 02:15:59 +08:00
}
type TokenCreateRes struct{}
2023-12-25 02:28:28 +08:00
type TokenVerifyReq struct {
g.Meta `path:"/verify" tags:"验证" method:"get" summary:"验证 TokenServiceImpl"`
2023-12-25 02:28:28 +08:00
}
type TokenVerifyRes struct{}