diff --git a/content/roadmaps/109-golang/content/101-go-advanced/100-go-modules.md b/content/roadmaps/109-golang/content/101-go-advanced/100-go-modules.md index 2b193139b..8c2715d6b 100644 --- a/content/roadmaps/109-golang/content/101-go-advanced/100-go-modules.md +++ b/content/roadmaps/109-golang/content/101-go-advanced/100-go-modules.md @@ -1 +1,8 @@ -# Go modules \ No newline at end of file +# Modules + +Go code is grouped into packages, and packages are grouped into modules. Your module specifies dependencies needed to run your code, including the Go version and the set of other modules it requires. + +Free Content +How to create a module in Go +How to use modules in Go +How to modify existing projects to use Go modules