March 2020
Intermediate to advanced
406 pages
8h 39m
English
Go modules were introduced in Go 1.11. They afford the ability to keep track of versioned dependencies within a Go code base. They are a collection of Go packages that are stored as a cohesive unit in a go.mod file within a project directory.
We will perform the following steps to initialize a new module:
go mod init github.com/bobstrecansky/HighPerformanceWithGogo: creating new go.mod: module github.com/bobstrecansky/HighPerformanceWithGo
As an example, if we want ...
Read now
Unlock full access