Some checks failed
Build and Test / friends (push) Failing after 4m3s
Build and Test / wii-u-chat (push) Successful in 5m33s
Build and Test / fast-racing-neo (push) Successful in 6m5s
Build and Test / puyopuyo (push) Successful in 6m7s
Build and Test / minecraft-wiiu (push) Successful in 6m14s
Build and Test / super-mario-maker (push) Successful in 6m34s
Build and Test / sonic-transformed (push) Successful in 10m14s
Build and Test / wii-sports-club (push) Successful in 10m53s
Build and Test / splatoon (push) Successful in 10m59s
Build and Test / splatoon-testfire (push) Successful in 10m59s
Build and Test / mario-tennis (push) Successful in 11m23s
27 lines
505 B
Protocol Buffer
27 lines
505 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package meta;
|
|
|
|
import "google/protobuf/empty.proto";
|
|
|
|
message BuildInfo {
|
|
string version = 1;
|
|
string edition = 2;
|
|
string feature_set = 3;
|
|
string build_hash = 4;
|
|
}
|
|
|
|
message ApiFeature {
|
|
string name = 1;
|
|
int32 version = 2;
|
|
bool needs_admin = 3;
|
|
}
|
|
|
|
message ApiFeatures {
|
|
repeated ApiFeature api_features = 1;
|
|
}
|
|
|
|
service ServerMetaService {
|
|
rpc GetBuildInfo(google.protobuf.Empty) returns (BuildInfo);
|
|
rpc GetApiFeatures(google.protobuf.Empty) returns (ApiFeatures);
|
|
}
|