meta: initial commit (archival)

This commit is contained in:
2023-12-27 15:52:57 -05:00
commit 92c52a4dc0
7 changed files with 1275 additions and 0 deletions

16
proto/helloworld.proto Normal file
View File

@@ -0,0 +1,16 @@
syntax = "proto3";
package helloworld;
service Greeter {
rpc SayHello (HelloRequest) returns (HelloResponse);
}
message HelloRequest {
// Request message contains the name to be greeted
string name = 1;
}
message HelloResponse {
// Reply contains the greeting message
string message = 1;
}