add example with docs

This commit is contained in:
talksik
2025-07-15 08:46:45 -07:00
commit 6cf9975e84
9 changed files with 158 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
syntax="proto3";
package messenger;
service HelloService {
rpc SayHello(SayHelloRequest) returns (SayHelloResponse) {}
}
message SayHelloRequest {
string name = 1;
}
message SayHelloResponse {
string message = 1;
}