.gitignore added
[dotfiles/.git] / .config / coc / extensions / coc-go-data / tools / pkg / mod / golang.org / x / mod@v0.4.1 / README.md
1 # mod
2
3 [![PkgGoDev](https://pkg.go.dev/badge/golang.org/x/mod)](https://pkg.go.dev/golang.org/x/mod)
4
5 This repository holds packages for writing tools
6 that work directly with Go module mechanics.
7 That is, it is for direct manipulation of Go modules themselves.
8
9 It is NOT about supporting general development tools that
10 need to do things like load packages in module mode.
11 That use case, where modules are incidental rather than the focus,
12 should remain in x/tools, specifically x/tools/go/packages.
13
14 The specific case of loading packages should still be done by
15 invoking the go command, which remains the single point of
16 truth for package loading algorithms.