Switch to Go11Modules

This commit is contained in:
James Mills
2019-07-11 22:09:04 +10:00
parent eaa9f9d205
commit 5cab47c0e5
3 changed files with 52 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
.PHONY: dev build clean
.PHONY: dev build install clean
all: dev
@@ -9,6 +9,9 @@ build: clean
go get ./...
go build .
install:
go install .
test:
go test ./...