forked from spacebar/rust-nex
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);
|
|
} |