regenerate all proto based files (#1531)

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2020-04-14 16:25:09 +03:00
parent 25c4c7f7c4
commit 33e3df9bdb
3 changed files with 52 additions and 11 deletions

View File

@@ -1,11 +1,17 @@
syntax = "proto3";
import "google/api/annotations.proto";
service Test {
rpc Call(Request) returns (Response) {}
rpc Call(Request) returns (Response) {
option (google.api.http) = { post: "/api/v0/test/call/{uuid}"; body:"*"; };
};
}
message Request {
string name = 1;
string uuid = 1;
string name = 2;
}
message Response {