mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-25 10:28:45 +08:00
11 lines
196 B
Plaintext
11 lines
196 B
Plaintext
|
type Response {
|
||
|
Host string `json:"host"`
|
||
|
Time int64 `json:"time"`
|
||
|
}
|
||
|
|
||
|
service graceful-api {
|
||
|
@server(
|
||
|
handler: GracefulHandler
|
||
|
)
|
||
|
get /api/graceful() returns(Response)
|
||
|
}
|