kjuulh ae1f91b2b1
Some checks failed
continuous-integration/drone/push Build is failing
feat: add protobuf
Signed-off-by: kjuulh <contact@kjuulh.io>
2024-02-11 13:31:45 +01:00

19 lines
332 B
Protocol Buffer

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;
}