.PHONY: build
build:
	go build -v ./cmd/rest
.DEFAULT_GOAL := build


.PHONY: test
test:
	go test -v -race -timeout 30s ./...