• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

gosumcheck/H09-Mar-2021-

internal/lazyregexp/H09-Mar-2021-

modfile/H09-Mar-2021-

module/H09-Mar-2021-

semver/H09-Mar-2021-

sumdb/H09-Mar-2021-

zip/H09-Mar-2021-

LICENSEH A D09-Mar-20211.4 KiB

PATENTSH A D09-Mar-20211.3 KiB

README.mdH A D09-Mar-2021660

codereview.cfgH A D09-Mar-202121

go.modH A D09-Mar-2021214

go.sumH A D09-Mar-20211.4 KiB

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
5This repository holds packages for writing tools
6that work directly with Go module mechanics.
7That is, it is for direct manipulation of Go modules themselves.
8
9It is NOT about supporting general development tools that
10need to do things like load packages in module mode.
11That use case, where modules are incidental rather than the focus,
12should remain in x/tools, specifically x/tools/go/packages.
13
14The specific case of loading packages should still be done by
15invoking the go command, which remains the single point of
16truth for package loading algorithms.
17