primeiro commit

This commit is contained in:
2026-07-05 14:26:03 -03:00
commit 87a356c742
19 changed files with 1404 additions and 0 deletions

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
BINARY := statuspanel
CMD := ./cmd/statuspanel
.PHONY: build test clean
build:
CGO_ENABLED=0 go build -o $(BINARY) $(CMD)
test:
go test ./...
clean:
rm -f $(BINARY)