standard/idl/hello.thrift
2026-03-28 19:31:44 +08:00

15 lines
219 B
Thrift

namespace go hello
struct HelloReq {
1: string Name (api.query="name");
}
struct HelloResp {
1: string RespBody;
}
service HelloService {
HelloResp HelloMethod(1: HelloReq request) (api.get="/hello");
}