.PHONY: build test

build:
	go build -o build/

test:
	go test -v ./...

run: build
	./build/boot_server