2025-11-13 03:01:00 +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) {}
|
|
|
|
|
|
|
|
|
|
rpc UpdateParams(UpdateParamsCommand.Request) returns (UpdateParamsCommand.Feedback) {}
|
2026-06-17 09:36:26 +08:00
|
|
|
|
|
|
|
|
rpc StopAll(StopAllCommand.Request) returns (StopAllCommand.Feedback) {}
|
2025-11-13 03:01:00 +08:00
|
|
|
}
|