Initial import

This commit is contained in:
Jens Christian True
2019-04-15 14:12:50 +02:00
commit f86b64b825
8 changed files with 373 additions and 0 deletions

12
Makefile Normal file
View File

@ -0,0 +1,12 @@
.PHONY: default build dependencies image
default: build
build:
go build -v
dependencies:
go mod download
image:
docker build -t furyfire/gomie .