micro/server/grpc/proto/test.proto

25 lines
572 B
Protocol Buffer
Raw Normal View History

2019-06-03 20:44:43 +03:00
syntax = "proto3";
import "google/api/annotations.proto";
2019-06-05 12:22:28 +03:00
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:"*"; };
};
2019-06-03 20:44:43 +03:00
}
message Request {
string uuid = 1;
string name = 2;
2019-06-03 20:44:43 +03:00
}
message Response {
string msg = 1;
}