go-zero/tools/goctl/api/new/api.tpl

15 lines
232 B
Smarty
Raw Normal View History

2023-09-02 09:45:48 +08:00
syntax = "v1"
type Request {
2022-04-14 23:43:48 +08:00
Name string `path:"name,options=you|me"`
}
type Response {
2022-04-14 23:43:48 +08:00
Message string `json:"message"`
}
service {{.name}}-api {
@handler {{.handler}}Handler
get /from/:name(Request) returns (Response)
}