Fix go mod issues

This commit is contained in:
Asim Aslam
2019-06-05 10:22:28 +01:00
committed by Vasiliy Tolstov
parent eaae419939
commit eff6cf4b56
4 changed files with 305 additions and 6 deletions

13
proto/test.proto Normal file
View File

@@ -0,0 +1,13 @@
syntax = "proto3";
service Test {
rpc Call(Request) returns (Response) {}
}
message Request {
string name = 1;
}
message Response {
string msg = 1;
}