grpc_client/protos/cmvr/api/system_service.proto
2026-06-17 09:36:26 +08:00

15 lines
473 B
Protocol Buffer

syntax = "proto3";
import "cmvr/api/system_command.proto";
package cmvr.api;
service SystemService {
rpc GetSystemInfo(GetSystemInfoCommand.Request) returns (GetSystemInfoCommand.Feedback) {}
rpc GetSystemStatus(GetSystemStatusCommand.Request) returns (GetSystemStatusCommand.Feedback) {}
rpc UpdateParams(UpdateParamsCommand.Request) returns (UpdateParamsCommand.Feedback) {}
rpc StopAll(StopAllCommand.Request) returns (StopAllCommand.Feedback) {}
}