Add Makefile

This commit is contained in:
Ivan 2025-07-01 13:32:45 +05:00
parent 7139f74b18
commit 7e7f721002
Signed by: landlord
GPG key ID: 416A03BC4ADA4CD7

10
Makefile Normal file
View file

@ -0,0 +1,10 @@
all: fmt vet test
fmt:
go fmt ./...
vet:
go vet ./...
test:
go test -vet=off ./...