فهرست منبع

增加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);
+};