chore: initial commit

This commit is contained in:
2020-10-21 18:00:15 +02:00
parent 1d6f439894
commit c4ed26526e
22 changed files with 1376 additions and 0 deletions

13
Makefile Normal file
View File

@ -0,0 +1,13 @@
watch:
modd
build: build-server build-client
build-server:
go build -o ./bin/server ./cmd/server
build-client:
go build -o ./bin/client ./cmd/client
test:
go test -v -race ./...