planning
All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s

This commit is contained in:
2024-10-14 09:15:30 +02:00
parent bcba00a730
commit 6e64e138e2
21059 changed files with 2317811 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
message HelloRequest {
optional string greeting = 1;
}
message HelloResponse {
required string reply = 1;
}
service HelloService {
rpc SayHello(HelloRequest) returns (HelloResponse) {
option (google.api.http) = {
get: "/v1/say-hello/echo/{greeting}"
additional_bindings {
post: "/v2/say-hello"
body: "greeting"
}
additional_bindings {
get: "/v2/say-hello"
}
};
}
rpc LotsOfReplies(HelloRequest) returns (stream HelloResponse);
rpc LotsOfGreetings(stream HelloRequest) returns (HelloResponse) {
option (google.api.http) = {
post: "/v1/lots-of-greetings"
body: "*"
};
}
rpc BidiHello(stream HelloRequest) returns (stream HelloResponse);
}