All checks were successful
Build and Test / sonic-transformed (push) Successful in 7m20s
Build and Test / mario-tennis (push) Successful in 7m30s
Build and Test / minecraft-wiiu (push) Successful in 7m35s
Build and Test / terraria (push) Successful in 7m58s
Build and Test / wii-sports-club (push) Successful in 8m0s
Build and Test / puyopuyo (push) Successful in 8m2s
Build and Test / splatoon-testfire (push) Successful in 8m55s
Build and Test / splatoon (push) Successful in 8m55s
Build and Test / wii-u-chat (push) Successful in 9m12s
Build and Test / super-mario-maker (push) Successful in 9m14s
Build and Test / friends (push) Successful in 9m16s
Build and Test / fast-racing-neo (push) Successful in 9m26s
13 lines
No EOL
242 B
Protocol Buffer
13 lines
No EOL
242 B
Protocol Buffer
syntax = "proto3";
|
|
package auth;
|
|
|
|
message MaintenanceState {
|
|
bool enabled = 1;
|
|
}
|
|
|
|
message Empty {}
|
|
|
|
service AuthAdminService {
|
|
rpc SetMaintenance(MaintenanceState) returns (Empty);
|
|
rpc GetMaintenance(Empty) returns (MaintenanceState);
|
|
} |