Przeglądaj źródła

增加RpcChannelTest.proto

tanghai 14 lat temu
rodzic
commit
a023ed537f
1 zmienionych plików z 13 dodań i 0 usunięć
  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);
+};