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.
16 lines
340 B
16 lines
340 B
package v1
|
|
|
|
import (
|
|
. "github.com/alimy/mir/v5"
|
|
|
|
"github.com/rocboss/paopao-ce/internal/model/web"
|
|
)
|
|
|
|
// Trends 动态相关 服务
|
|
type Trends struct {
|
|
Schema `mir:"v1,chain"`
|
|
|
|
// GetIndexTrends 获取广场页面动态条栏的索引item
|
|
GetIndexTrends func(Get, web.GetIndexTrendsReq) web.GetIndexTrendsResp `mir:"trends/index"`
|
|
}
|