mirror of
https://github.com/zeromicro/go-zero.git
synced 2026-05-07 23:20:00 +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);
|
|
}
|
|
|
|
|