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.
paopao-ce/proto/greet/v1/greet.proto

17 lines
290 B

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) {}
}