feat: initial commit

This commit is contained in:
 Ilya Atamas
2019-04-16 15:05:21 +03:00
commit 4dad509dc6
11 changed files with 307 additions and 0 deletions

11
Makefile Normal file
View File

@@ -0,0 +1,11 @@
.PHONY: run
run:
go run main.go
.PHONY: build
build:
CGO_ENABLED=0 go build -ldflags="-w -s" -o build/router
.PHONY: test
test:
go test ./...