mirror of https://github.com/rocboss/paopao-ce
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.
26 lines
535 B
26 lines
535 B
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(WebLoose))
|
|
}
|
|
|
|
type WebLoose struct {
|
|
Chain Chain `mir:"-"`
|
|
Group Group `mir:"v1"`
|
|
|
|
// Timeline 获取广场流
|
|
Timeline func(Get, web.TimelineReq) web.TimelineResp `mir:"/posts"`
|
|
|
|
// GetUserTweets 获取用户动态列表
|
|
GetUserTweets func(Get) `mir:"/user/posts"`
|
|
|
|
// GetUserProfile 获取用户基本信息
|
|
GetUserProfile func(Get) `mir:"/user/profile"`
|
|
}
|