sitemap/Makefile
2025-06-16 13:50:33 +05:00

10 lines
80 B
Makefile

all: fmt vet test
fmt:
go fmt ./...
vet:
go vet ./...
test:
go test ./...