go.chromium.org/luci@v0.0.0-20240309015107-7cdc2e660f33/client/README.md (about) 1 luci-go: LUCI in Go: client code 2 ================================ 3 4 [](https://godoc.org/go.chromium.org/luci/client) 5 6 7 Installing clients 8 ------------------ 9 10 go get -u go.chromium.org/luci/client/cmd/... 11 12 13 Code layout 14 ----------- 15 16 * [/client/cmd/...](https://github.com/luci/luci-go/tree/master/client/cmd) 17 contains the individual executables, one per subdirectory. 18 * [/client/internal/...](https://github.com/luci/luci-go/tree/master/client/internal) 19 contains shared internal packages for use by other packages in this 20 repository that are not meant to be used by other packages outside 21 `/client/...`. See https://golang.org/s/go14internal for more details. 22 * Anything else is APIs (reusable packages) that can be reused.