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

..03-May-2022-

gosumcheck/H08-Jun-2021-230164

internal/lazyregexp/H08-Jun-2021-7952

modfile/H08-Jun-2021-4,8583,997

module/H08-Jun-2021-1,6351,123

semver/H08-Jun-2021-610495

sumdb/H08-Jun-2021-4,9703,371

zip/H08-Jun-2021-2,3451,868

LICENSEH A D08-Jun-20211.4 KiB2824

PATENTSH A D08-Jun-20211.3 KiB2320

README.mdH A D08-Jun-2021660 1712

codereview.cfgH A D08-Jun-202121 21

go.modH A D08-Jun-2021214 107

go.sumH A D08-Jun-20211.4 KiB1514

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