mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
290 B
17 lines
290 B
1 year ago
|
syntax = "proto3";
|
||
|
|
||
|
package greet.v1;
|
||
|
|
||
|
option go_package = "github.com/rocboss/paopao-ce/auto/rpc/greet/v1;greetv1";
|
||
|
|
||
|
message GreetRequest {
|
||
|
string name = 1;
|
||
|
}
|
||
|
|
||
|
message GreetResponse {
|
||
|
string greeting = 1;
|
||
|
}
|
||
|
|
||
|
service GreetService {
|
||
|
rpc Greet(GreetRequest) returns (GreetResponse) {}
|
||
|
}
|