planetwars.dev/proto/bot_api.proto

37 lines
649 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;
}
2022-06-03 19:24:18 +00:00
message PlayerRequest {
int32 request_id = 1;
bytes content = 2;
}
message PlayerRequestResponse {
int32 request_id = 1;
bytes content = 2;
}
2022-06-08 20:37:38 +00:00
message MatchRequest {
string opponent_name = 1;
}
message CreatedMatch {
int32 match_id = 1;
string player_key = 2;
}
2022-06-03 19:24:18 +00:00
service BotApiService {
2022-06-08 20:37:38 +00:00
rpc CreateMatch(MatchRequest) returns (CreatedMatch);
2022-06-03 19:24:18 +00:00
// server sends requests to the player, player responds
rpc ConnectBot(stream PlayerRequestResponse) returns (stream PlayerRequest);
2022-05-31 19:08:56 +00:00
}