mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-25 02:08:44 +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);
|
||
|
}
|
||
|
|
||
|
|