1234567891011121314151617181920 |
- type Inline struct {
- }
- type Request struct {
- Inline
- Name string `path:"name,options=you|me"` // name in path
- }
- type Response struct {
- Message string `json:"msg"` // message
- }
- service A-api {
- @doc ("helloworld")
- @server(
- handler: GreetHandler
- )
- get /greet/from/:name(Request) returns (Response)
- }
|