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

41 lines
1.0 KiB

package v1
import (
. "github.com/alimy/mir/v3"
. "github.com/alimy/mir/v3/engine"
"github.com/rocboss/paopao-ce/internal/model/web"
)
func init() {
AddEntry(new(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"`
// TweetDetail 获取动态详情
TweetDetail func(Get, web.TweetDetailReq) web.TweetDetailResp `mir:"/post"`
// TweetComments 获取动态评论
TweetComments func(Get, web.TweetCommentsReq) web.TweetCommentsResp `mir:"/post/comments"`
// TopicList 获取话题列表
TopicList func(Get, web.TopicListReq) web.TopicListResp `mir:"/tags"`
}