moving makefile

This commit is contained in:
2026-07-17 20:36:25 -06:00
parent d4b46c93e0
commit 4501133b5c
+14
View File
@@ -0,0 +1,14 @@
.DEFAULT_GOAL := build
.PHONY:fmt vet build
fmt:
go fmt ./...
vet: fmt
go vet ./...
build:
go build ./...
test:
go test ./tests/...