.PHONY: build test clean

build:
	go build -o bin/stats-gateway ./cmd/server
	go build -o bin/stats-collector ./cmd/collector
	go build -o bin/stats-snapshot ./cmd/snapshot

test:
	go test ./...

clean:
	rm -rf bin/
