aboutsummaryrefslogtreecommitdiff
path: root/HelloGrpc/hello.proto
blob: 8776dd7fdcbd69d6254e2c5c60a4c7b5e2fec5f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
syntax = "proto3";

package HelloNet.Api;

service HelloSayer {
   rpc SayHello(HelloRequest) returns (HelloResponse) {}
}

message HelloRequest {
  string greetee = 1;
}

message HelloResponse {
}