Golang modules: Difference between revisions

From wikinotes
No edit summary
Line 1: Line 1:
Go modules are a collection of packages that are intended to be released together.
Go modules are a collection of packages that are intended to be released together.<br>
You define your project requirements in at the module level,<br>
and you can publish module-versions to the go package index.


= Modules =
= Modules =

Revision as of 13:52, 19 June 2022

Go modules are a collection of packages that are intended to be released together.
You define your project requirements in at the module level,
and you can publish module-versions to the go package index.

Modules

Creating/Requiring Modules

See go.mod file.