Files
go-zero/tools/goctl/quickstart/idl/greet.api

11 lines
124 B
Plaintext
Raw Normal View History

syntax = "v1"
type resp {
msg string `json:"msg"`
}
service greet {
@handler ping
post /ping returns (resp)
}