Преглед на файлове

增加RpcChannelTest.proto

tanghai преди 14 години
родител
ревизия
a023ed537f
променени са 1 файла, в които са добавени 13 реда и са изтрити 0 реда
  1. 13 0
      Src/Egametang/Rpc/RpcChannelTest.proto

+ 13 - 0
Src/Egametang/Rpc/RpcChannelTest.proto

@@ -0,0 +1,13 @@
+package Egametang;
+
+message RpcChannelTestRequest {
+	required int32 num = 1;
+};
+
+message RpcChannelTestResponse {
+	required int32 num = 1;
+};
+
+service RpcChannelTestService {
+  rpc Echo(RpcChannelTestRequest) returns (RpcChannelTestResponse);
+};