go-zero/example/tracing/remote/portal/portal.proto
2020-07-26 17:09:05 +08:00

16 lines
213 B
Protocol Buffer

syntax = "proto3";
package portal;
message PortalRequest {
string name = 1;
}
message PortalResponse {
string response = 1;
}
service Portal {
rpc Portal(PortalRequest) returns (PortalResponse);
}