mcstatus/response.proto
Michael b33b6bee1d refactoring code
Signed-off-by: Michael <michael.lindman@gmail.com>
2020-11-05 16:51:20 +00:00

28 lines
556 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 {
string text = 1;
}
Description description = 3;
string favicon = 4;
}