Initial commit.

This commit is contained in:
Anna Rose Wiggins 2020-05-11 16:28:37 +00:00
commit 63539b5bc1
9 changed files with 401 additions and 0 deletions

9
Makefile Normal file
View file

@ -0,0 +1,9 @@
.PHONY: all build deps
all: build
build:
rm -rf build/
mkdir build/
# golint ./...
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o build/smartswitch-server ./cmd/smartswitch-server