update tests and deps

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2021-07-05 16:26:57 +03:00
parent 3ceff22f52
commit 32039b342f
17 changed files with 826 additions and 105 deletions

View File

@@ -0,0 +1,18 @@
syntax = "proto3";
option go_package = "github.com/unistack-org/micro-tests/client/drpc/proto;pb";
package Test;
service TestService {
rpc Call(CallReq) returns (CallRsp) {}
rpc Hello(CallReq) returns (CallRsp) {}
}
message CallReq {
string name = 1;
}
message CallRsp {
string name = 1;
}