feat: add initial

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2026-02-26 21:52:50 +01:00
commit 3162971c89
48 changed files with 3041 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
syntax = "proto3";
package sq.v1;
service StatusService {
rpc Status(GetStatusRequest) returns (GetStatusResponse) {}
}
message GetStatusRequest {}
message GetStatusResponse {
string node_id = 1;
ClusterStatus cluster = 2;
}
message ClusterStatus {
repeated NodeInfo nodes = 1;
}
message NodeInfo {
string node_id = 1;
string address = 2;
string status = 3;
}