machine-drivers / docker-machine-driver-vmware

Docker machine driver for VMware Fusion and Workstation.
https://www.vmware.com/products/personal-desktop-virtualization.html
Apache License 2.0
184 stars 47 forks source link

Use Go modules #32

Closed middagj closed 3 years ago

middagj commented 3 years ago

I was creating #31 and notices that it used the deprecated dependency management tool for Go.

This PR upgrades to Go Modules, which is basically a:

go mod init github.com/machine-drivers/docker-machine-driver-vmware
go mod vendor
go mod tidy
rm Gopkg.*
mikeroySoft commented 3 years ago

Thanks for this!