run:
	go run ./cmd/demo-server

build:
	go build ./cmd/demo-server

test:
	go test ./...

fmt:
	gofmt -w $$(find . -name '*.go' -type f)

