fusenapi/goctl_template_backend/newapi/newtemplate.tpl

13 lines
217 B
Smarty
Raw Normal View History

2023-06-25 10:30:39 +00:00
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)
}