.PHONY: build test clean

build:
	go build -o bin/psp-stats-cli .

test:
	go test ./...

clean:
	rm -rf bin/
