cmvr-es/protos/cmvr/api/system_service.proto
2025-08-21 13:56:39 +08:00

11 lines
302 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) {}
}