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

18 lines
205 B
Protocol Buffer

syntax = "proto3";
package user;
message UserRequest {
string name = 1;
}
message UserResponse {
string response = 1;
}
service User {
rpc GetGrade(UserRequest) returns (UserResponse);
}