[WIP] Moving test services to this repo

This commit is contained in:
Janos Dobronszki
2020-10-02 15:03:48 +02:00
parent 61fe9c169b
commit 5c6ba0dbcd
49 changed files with 10400 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
syntax = "proto3";
package srv.test_example;
service Example {
rpc Call(Request) returns (Response) {}
}
message Request {
string name = 1;
bool caps = 2;
int64 number = 3;
}
message Response {
string msg = 1;
}