Files
termix/lib/proto/helloworld.proto
Nikolai Rodionov 56aa1e1bbf
Some checks failed
ci/woodpecker/push/code_tests Pipeline failed
ci/woodpecker/push/pre_commit_test Pipeline was successful
Trying to add protoc
2025-11-28 17:07:02 +01:00

15 lines
208 B
Protocol Buffer

syntax = "proto3";
package helloworld;
service Greeter {
rpc SayHello (HelloRequest) returns (HelloReply);
}
message HelloRequest {
string name = 1;
}
message HelloReply {
string message = 1;
}