mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-24 18:00:24 +08:00
18 lines
205 B
Protocol Buffer
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);
|
|
}
|
|
|
|
|