use own fork

Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
2020-09-20 16:08:45 +03:00
parent 4c65c013e5
commit 2c03ee8ec6
33 changed files with 1844 additions and 892 deletions

View File

@@ -1,17 +1,9 @@
syntax = "proto3";
import "google/api/annotations.proto";
package helloworld;
service Test {
rpc Call(Request) returns (Response) {
option (google.api.http) = { post: "/api/v0/test/call/{uuid}"; body:"*"; };
};
rpc CallPcre(Request) returns (Response) {
option (google.api.http) = { post: "^/api/v0/test/call/pcre/?$"; body:"*"; };
};
rpc CallPcreInvalid(Request) returns (Response) {
option (google.api.http) = { post: "^/api/v0/test/call/pcre/invalid/?"; body:"*"; };
};
rpc Call(Request) returns (Response) {}
}
message Request {