cmvr-es-cli/protos/cmvr/api/system_service.proto

14 lines
396 B
Protocol Buffer
Raw Normal View History

2025-08-21 14:05:27 +08:00
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) {}
2025-08-27 16:46:12 +08:00
rpc UpdateParams(UpdateParamsCommand.Request) returns (UpdateParamsCommand.Feedback) {}
2025-08-21 14:05:27 +08:00
}