mirror of
https://github.com/Drop-OSS/drop.git
synced 2026-07-12 22:04:45 +10:00
15 lines
300 B
Protocol Buffer
15 lines
300 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
message ServerGamesQuery {}
|
|
|
|
message ServerGamesResponse {
|
|
message SkeletonGame {
|
|
message SkeletonVersion {
|
|
string version_id = 1;
|
|
}
|
|
string id = 1;
|
|
repeated SkeletonVersion versions = 2;
|
|
}
|
|
repeated SkeletonGame games = 1;
|
|
}
|