Actually commit go.mod

master
Tim Hockin 2019-03-25 08:31:26 -07:00
parent 1b4f73c972
commit 245c18da57
2 changed files with 6 additions and 3 deletions

View File

@ -24,9 +24,9 @@ Dockerfile.in:
## Go Modules ## Go Modules
This assumes the use of go modules (which will be the default for all Go builds This assumes the use of go modules (which will be the default for all Go builds
as of Go 1.13) and vendoring (which reasonable minds might disagree about). You as of Go 1.13) and vendoring (which reasonable minds might disagree about).
will need to run `go mod init` to set them up, and you will need to run `go mod You will need to run `go mod vendor` to create a `vendor` directory when you
vendor` to create a `vendor` directory when you have dependencies. have dependencies.
## Building ## Building

3
go.mod Normal file
View File

@ -0,0 +1,3 @@
module github.com/thockin/go-build-template
go 1.12