1B. Go - Modules/Get
Go Module, allows easier use of dependencies and organization.
- go mod init MODULENAME // creates a new go module using a domain name
- go get -d PACKAGE // get package but do not build and install using d flag. Packages will be downloaded to GOPATH.
Comments
Post a Comment