diff --git a/pages/common/go-mod.md b/pages/common/go-mod.md new file mode 100644 index 0000000000..bf0a99ca3d --- /dev/null +++ b/pages/common/go-mod.md @@ -0,0 +1,16 @@ +# go mod + +> Tool for module maintenance. +> More information: . + +- Download modules to local cache: + +`go mod download` + +- Add missing and remove unused modules: + +`go mod tidy` + +- Copy all dependencies into vendor directory: + +`go mod vendor`