openbazaar-go icon indicating copy to clipboard operation
openbazaar-go copied to clipboard

Switch to Go Modules

Open prusnak opened this issue 4 years ago • 2 comments

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.

prusnak avatar May 11 '20 22:05 prusnak

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.

cpacia avatar May 11 '20 22:05 cpacia

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

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

DuckulaGL avatar May 26 '20 08:05 DuckulaGL