.PHONY: build fix test

build:
	go build ./...

fix:
	find . -iname '*.go' -not -path '*/vendor/*' -print0 | xargs -0 goimports -w

test:
	go test ./...

inspect_output:
	go run ./inspect_log_output/main.go
