
test:
	go test ./...
	
build:
	go build ./...

install:
	go install ./...

vet:
	go vet


