Getting started with Go modules
Go modules is the long-awaited dependency management solution for Golang. In this short blog post, we will explore how we can use it in your next project. In order to use go modules, you should be using go 1.11.x Modules are an experimental opt-in feature in go 1.11 and are expected to be GA in 1.13. Using it is very easy. As simple as creating your project outside $GOPATH.Using it inside $GOPATH requires you to do the following,...