pcm-coordinator/deploy/goctl/newapi/newtemplate.tpl

15 lines
232 B
Smarty

syntax = "v1"
type Request {
Name string `path:"name,options=you|me"`
}
type Response {
Message string `json:"message"`
}
service {{.name}}-api {
@handler {{.handler}}Handler
get /from/:name(Request) returns (Response)
}