csrf/Makefile
2025-06-11 00:24:24 +05:00

10 lines
80 B
Makefile

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