GOLANG
Anatomy of Modules in Go
Modules are a new way to manage dependencies of your Go project. Modules enable us to incorporate different versions of the same dependency without breaking the application.
💡 Before we begin, it’s worth mentioning that Modules are supported from Go version 1.11 but it…