planetwars.dev/proto/bot_api.proto

16 lines
219 B
Protocol Buffer
Raw Normal View History

2022-05-31 19:08:56 +00:00
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);
}