syntax = "proto3"; package ha.v1; option go_package = "gitea.nik4nao.com/nik/home-services/gen/ha/v1;hav1"; service RemoteService { rpc SendCommand(SendCommandRequest) returns (SendCommandResponse); } message SendCommandRequest { string device_id = 1; string command = 2; string command_type = 3; // "command" or "customize" } message SendCommandResponse {}