Go modules support
For new download procedure take a look at Installation.
Go mod requires for projects with major version 2 or higher, to include major version at the end of the module paths. This means for go.mod projects, depending of go-jet, will have to update there import paths. This can be achieved with the following command:
find . -type f \
-name '*.go' \
-exec sed -i -e 's,github.com/go-jet/jet,github.com/go-jet/jet/v2,g' {} \;
For GOPATH projects import path remains the same.