actr-cli 0.3.1

Command line tool for Actor-RTC framework projects
Documentation
syntax = "proto3";

package echo;

// Echo 请求
message EchoRequest {
  string message = 1;
}

// Echo 响应
message EchoResponse {
  string reply = 1;
  uint64 timestamp = 2;
}

// Echo 服务
service EchoService {
  rpc Echo(EchoRequest) returns (EchoResponse);
}