2025-08-22 16:57:29 +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) {}
|
2026-08-04 09:52:51 +08:00
|
|
|
rpc GetDeviceList(GetDeviceListCommand.Request) returns (GetDeviceListCommand.Feedback) {}
|
2025-08-27 15:30:51 +08:00
|
|
|
|
|
|
|
|
rpc UpdateParams(UpdateParamsCommand.Request) returns (UpdateParamsCommand.Feedback) {}
|
2025-12-08 17:15:46 +08:00
|
|
|
|
|
|
|
|
rpc StopAll(StopAllCommand.Request) returns (StopAllCommand.Feedback) {}
|
2026-07-23 09:10:39 +08:00
|
|
|
}
|