Files
hm-server-v2/deploy/template/newapi/newtemplate.tpl
2025-10-07 11:48:29 +08:00

13 lines
217 B
Smarty

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)
}