feat: add protobuf
Some checks failed
continuous-integration/drone/push Build is failing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-02-11 13:31:45 +01:00
parent 39d4109c36
commit ae1f91b2b1
5 changed files with 711 additions and 69 deletions

View File

@@ -0,0 +1,18 @@
syntax = "proto3";
package flux_releaser;
service Greeter {
// Sends a greeting
rpc SayHello (HelloRequest) returns (HelloReply) {}
}
// The request message containing the user's name.
message HelloRequest {
string name = 1;
}
// The response message containing the greetings.
message HelloReply {
string message = 1;
}