Add bindata

This commit is contained in:
Crow Crowcrow 2017-12-13 06:47:26 +01:00
parent f9ed3ac363
commit 201201edf3
No known key found for this signature in database
GPG key ID: 1CC867E990E45038
6 changed files with 54 additions and 29 deletions

9
Makefile Normal file
View file

@ -0,0 +1,9 @@
NAME=server
.PHONY: generate
generate:
@go generate ./...
.PHONY: build
build: generate
@go build -o $(NAME) server/*.go