planetwars.dev/proto/bot_api.proto
2022-05-31 21:08:56 +02:00

16 lines
219 B
Protocol Buffer

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