Browse Source

增加RpcChannelTest.proto

tanghai 14 years ago
parent
commit
a023ed537f
1 changed files with 13 additions and 0 deletions
  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);
+};