This PR updates the import paths for Duffle to github.com/cnabio/duffle.
This does not update the import paths for cnab-go because it would be state where the requested package for cnab-go would be github.com/cnabio/cnab-go, but the actual source code would contain github.com/deislabs/cnab-go, which results in inconsistencies.
Once we update the version of cnab-go used in Duffle to at least v0.8.0-beta1 (which is the first version with the new import path), we can update the imported path, and we should also move to Go modules, like most other Go project in cnabio.
But I would very much prefer to make the changes incrementally.
This PR updates the import paths for Duffle to
github.com/cnabio/duffle
. This does not update the import paths forcnab-go
because it would be state where the requested package forcnab-go
would begithub.com/cnabio/cnab-go
, but the actual source code would containgithub.com/deislabs/cnab-go
, which results in inconsistencies.Once we update the version of
cnab-go
used in Duffle to at least v0.8.0-beta1 (which is the first version with the new import path), we can update the imported path, and we should also move to Go modules, like most other Go project incnabio
. But I would very much prefer to make the changes incrementally.