blob: ad0ee2f4fc2817aeba071a542576e22580ce9b14 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
syntax = "proto3";
package grpc.planetwars.bot_api;
message Hello {
string hello_message = 1;
}
message HelloResponse {
string response = 1;
}
service TestService {
rpc greet(Hello) returns (HelloResponse);
}
|