go.mod
Learn how to generate and configure the go.mod file to manage modules and dependencies for Go apps on Discloud.
ποΈ What is go.mod?
go.mod?π οΈ Creating a New Module
1
go mod init github.com/you/yourapp2
go mod tidy3
go get github.com/go-chi/chi/v5go mod tidyπ§© Minimal Example
module github.com/you/yourapp
go 1.22π¦ Adding Dependencies
1
2
π go.sum Integrity & Empty Case
go.sum Integrity & Empty Caseπ§ͺ Application Type Examples
π§° Common Commands Reference
Last updated