mcstatus/response.proto
Michael 344de847c7 refactoring again, moved tcp client to pacakge
Signed-off-by: Michael <michael.lindman@gmail.com>
2020-12-15 21:13:50 +00:00

32 lines
653 B
Protocol Buffer

syntax="proto3";
package pb;
option go_package = "git.0cd.xyz/michael/mcstatus/pb";
message Response {
message Version {
string name = 1;
int32 protocol = 2;
}
Version version = 1;
message Players {
int32 max = 1;
int32 online = 2;
message Sample {
string name = 1;
string id = 2;
}
repeated Sample sample = 3;
}
Players players = 2;
message Description {
message Extra {
string text = 1;
}
repeated Extra extra = 1;
string text = 2;
}
Description description = 3;
string favicon = 4;
}