Add initial prototype

This commit is contained in:
Dave Gallant
2020-03-31 21:31:52 -04:00
parent 89681da2ca
commit 6be207ffb7
15 changed files with 558 additions and 81 deletions

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
BIN ?= dist/srv
build: ## Builds the binary
go build -o $(BIN)
.PHONY: build
test: ## Run unit tests
go test -v ./...
.PHONY: test