This commit is contained in:
MaxToby
2021-01-08 23:35:08 +08:00
parent 9d54da3c67
commit ce24620329
101 changed files with 10965 additions and 27 deletions

View File

@ -1,25 +0,0 @@
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)
}