.PHONY: test run fmt

test:
	go test ./...

run:
	go run ./cmd/server

fmt:
	gofmt -w cmd internal pkg
