feat: base grpc system and base use

This commit is contained in:
2026-04-04 20:19:16 +03:00
parent b6d701c9e0
commit 4177c00e75
9 changed files with 388 additions and 5 deletions
+13
View File
@@ -0,0 +1,13 @@
syntax = "proto3";
import "google/protobuf/empty.proto";
option go_package = "github.com/lorsanstand/HomeOps-Hub/api/gen/homeops;homeops";
service Hub {
rpc Ping (google.protobuf.Empty) returns (PongResponse) {}
}
message PongResponse {
string pong = 1;
}