2022-07-17 01:09:09 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2022-07-17 01:41:57 +00:00
|
|
|
option go_package = "git.itzana.me/strafesnet/protobufs/rpc/bots";
|
2022-07-17 01:09:09 +00:00
|
|
|
|
|
|
|
package bots;
|
|
|
|
|
|
|
|
service BotsService {
|
|
|
|
rpc Get(IdMessage) returns (BotResponse);
|
|
|
|
rpc GetList(IdList) returns (BotList);
|
|
|
|
rpc Update(BotRequest) returns (NullResponse);
|
|
|
|
rpc Create(BotRequest) returns (IdMessage);
|
|
|
|
rpc Delete(IdMessage) returns (NullResponse);
|
|
|
|
rpc List(ListRequest) returns (BotList);
|
|
|
|
}
|
|
|
|
|
|
|
|
message IdList {
|
|
|
|
repeated int64 ID = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message IdMessage {
|
|
|
|
int64 ID = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message BotResponse {
|
|
|
|
int64 ID = 1;
|
|
|
|
int64 TimeID = 2;
|
|
|
|
int64 Date = 3;
|
|
|
|
string FileID = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message BotRequest {
|
|
|
|
int64 ID = 1;
|
|
|
|
optional int64 TimeID = 2;
|
|
|
|
optional int64 Date = 3;
|
|
|
|
optional string FileID = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message BotList {
|
|
|
|
repeated BotResponse Bots = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ListRequest {
|
|
|
|
BotRequest Filter = 1;
|
|
|
|
Pagination Page = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Pagination {
|
|
|
|
int32 Size = 1;
|
|
|
|
int32 Number = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message NullResponse {
|
|
|
|
|
|
|
|
}
|