mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 01:30:25 +08:00
15 lines
232 B
Smarty
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)
|
|
}
|