This commit is contained in:
2025-11-14 12:11:44 +08:00
commit 39ebf61572
88 changed files with 9999 additions and 0 deletions

19
Makefile Normal file
View File

@@ -0,0 +1,19 @@
GO ?= /home/rogee/.local/go/bin/go
GOCACHE ?= /tmp/go-build
.PHONY: build fmt test test-all run
build:
$(GO) build ./cmd/any-hub
fmt:
$(GO)fmt ./cmd ./internal ./tests
test:
$(GO) test ./...
test-all:
GOCACHE=$(GOCACHE) $(GO) test ./...
run:
$(GO) run ./cmd/any-hub --config ./config.toml