cmvr-es/protos/cmvr/api/test_service.proto

18 lines
202 B
Protocol Buffer
Raw Normal View History

syntax = "proto3";
package cmvr.api;
message TestReqeust {
string data = 1;
}
message TestResponse {
string data = 1;
}
service TestService{
rpc Call (TestReqeust) returns (TestResponse);
}