Go modules
Go organises code into units called modules, and each module needs to be in a separate folder (you can’t have modules within modules). Each module needs a go.mod
file which tells Go that this folder contains a module, and what the name of the module is
References
- John Arundel, For the Love of Go
#programming #golang #package #for_the_love_of_go #module #computer_science