feat(grpc): add support for maintenance checks
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

This commit is contained in:
red binder 2026-08-12 04:57:53 +02:00
commit 667f434189
8 changed files with 150 additions and 2 deletions

View file

@ -0,0 +1,13 @@
syntax = "proto3";
package auth;
message MaintenanceState {
bool enabled = 1;
}
message Empty {}
service AuthAdminService {
rpc SetMaintenance(MaintenanceState) returns (Empty);
rpc GetMaintenance(Empty) returns (MaintenanceState);
}