Golang modules

From wikinotes
Revision as of 18:43, 23 May 2022 by Will (talk | contribs)

Go modules are a collection of packages that are intended to be released together.

Modules

Creating/Requiring Modules

See go.mod file.

Imports

import (
    "fmt"
    "golang.org/x/example/stringutil"
)