OpenBazaar / openbazaar-go

OpenBazaar 2.0 Server Daemon in Go
MIT License
994 stars 283 forks source link

Switch to Go Modules #2072

Open prusnak opened 4 years ago

prusnak commented 4 years ago

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 and go.sum files to your projects.

cpacia commented 4 years ago

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.

DuckulaGL commented 4 years ago

Hello, you mean that we use this command below in the future?

export GO111MODULE=on go get github.com/OpenBazaar/openbazaar-go (without -u)