Replies: 1 comment 2 replies
-
Hey, thanks for this! Lux is the first Go application I have written and I had no idea about this. I'll switch to Go Modules straight away! |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Go Modules is the official dependency management system of Go (introduced in Go 1.11 and made the default in Go 1.16). It allows for automatic download of dependencies and the use of the
go install
command to install a binary from a repository.In addition, modules are super easy to set up. All it takes is
go mod init github.com/BanDev/Lux
and any dependencies are installed usinggo get <repo url>
.Beta Was this translation helpful? Give feedback.
All reactions