openbazaar-go
openbazaar-go copied to clipboard
Switch to Go Modules
Go Modules is Go’s new dependency management system that makes dependency version information explicit and easier to manage.
Citing from https://blog.golang.org/using-go-modules:
Go modules are the future of dependency management in Go.
We encourage you to start using modules in your local development and to add
go.mod
andgo.sum
files to your projects.
We do intend to. The biggest hold up for us is to do so we have to migrate IPFS up several versions at the same time as we switch to go mod and this is a large scale refactor with some considerations for backwards compatibility.
Hello, you mean that we use this command below in the future?
export GO111MODULE=on go get github.com/OpenBazaar/openbazaar-go (without -u)