adding back some supplementary files

This commit is contained in:
2026-05-19 15:44:37 -06:00
parent fc0629090e
commit 7df6eb3bd5
4 changed files with 168 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
.DEFAULT_GOAL := build
.PHONY:fmt vet build
fmt:
go fmt ./...
vet: fmt
go vet ./...
build: vet
go build -o drogobox internal/app/main.go
test:
go test ./tests/...