This commit is contained in:
2025-11-12 09:41:52 +03:00
commit 2a8566712a
44 changed files with 2602 additions and 0 deletions

17
proto/hello.proto Normal file
View File

@@ -0,0 +1,17 @@
syntax="proto3";
package hello;
option go_package = "madsky.ru/go-tracker/proto";
service Hello {
rpc SayHello (HelloRequest) returns (HelloResponse) {};
}
message HelloRequest {
string name = 1;
}
message HelloResponse {
string message = 1;
}