Add stub repository structure

This commit is contained in:
2025-06-03 22:32:01 +02:00
commit 3ccb0fda2c
6 changed files with 45 additions and 0 deletions

15
protos/service.proto Normal file
View File

@@ -0,0 +1,15 @@
syntax = "proto3";
package example;
service HelloService {
rpc SayHello (HelloRequest) returns (HelloReply);
}
message HelloRequest {
string name = 1;
}
message HelloReply {
string message = 1;
}