Upgrading the packages in GOPATH to go modules

1 · Shane Mulligan · Dec. 27, 2019, 11 a.m.
Reading material https://github.com/golang/go/wiki/Modules#modules Introduction to Go Modules in Go v1.11, Goodbye GOPATH! https://blog.golang.org/migrating-to-go-modules 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 package Nothing but a directory with some code files, which exposes different variables (features) from a single point of reference. This is a package: ${GOPATH%%:*}/src/github.com/mullikine/google-spreadsheet-cli module A collection of related Go packages that are versioned ...