26 lines
340 B
Plaintext
26 lines
340 B
Plaintext
info(
|
|
title: "小程序商城"
|
|
desc: "小程序商品首页"
|
|
version: "1.0"
|
|
)
|
|
|
|
|
|
type IndexResp struct {
|
|
NewList
|
|
}
|
|
|
|
|
|
type NewList struct{
|
|
id int `json:"id"`
|
|
}
|
|
|
|
service index-api {
|
|
@doc(
|
|
summary: "首页列表"
|
|
)
|
|
@server(
|
|
handler: IndexHandler
|
|
)
|
|
get /index/index returns (IndexResp)
|
|
}
|