go-zero/example/graceful/dns/api/graceful.api

11 lines
196 B
Plaintext
Raw Normal View History

2020-07-26 17:09:05 +08:00
type Response {
Host string `json:"host"`
Time int64 `json:"time"`
}
service graceful-api {
@server(
handler: GracefulHandler
)
get /api/graceful() returns(Response)
}