You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
paopao-ce/mirc/web/v1/pub.go

32 lines
706 B

package v1
import (
. "github.com/alimy/mir/v4"
. "github.com/alimy/mir/v4/engine"
"github.com/rocboss/paopao-ce/internal/model/web"
)
func init() {
Entry[Pub]()
}
// Pub 不用授权的公开服务
type Pub struct {
Group `mir:"v1"`
// Version 获取后台版本信息
Version func(Get) web.VersionResp `mir:"/"`
// Login 用户登录
Login func(Post, web.LoginReq) web.LoginResp `mir:"/auth/login"`
// Register 用户注册
Register func(Post, web.RegisterReq) web.RegisterResp `mir:"/auth/register"`
// GetCaptcha 获取验证码
GetCaptcha func(Get) web.GetCaptchaResp `mir:"/captcha"`
// SendCaptcha 发送验证码
SendCaptcha func(Post, web.SendCaptchaReq) `mir:"/captcha"`
}