Initial commit: stats-gateway gRPC service + dashboard + CLI

This commit is contained in:
2026-05-05 21:04:32 +05:00
commit 4059e94759
44 changed files with 2513 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
.PHONY: build test clean
build:
go build -o bin/stats-gateway ./cmd/server
go build -o bin/stats-collector ./cmd/collector
go build -o bin/stats-snapshot ./cmd/snapshot
test:
go test ./...
clean:
rm -rf bin/