initial import
This commit is contained in:
17
example/rpc/remote/unary/greet.proto
Normal file
17
example/rpc/remote/unary/greet.proto
Normal file
@@ -0,0 +1,17 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package unary;
|
||||
|
||||
message Request {
|
||||
string name = 1;
|
||||
}
|
||||
|
||||
message Response {
|
||||
string greet = 1;
|
||||
}
|
||||
|
||||
service Greeter {
|
||||
rpc greet(Request) returns (Response);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user