diff options
| author | Markus Heiser <markus.heiser@darmarit.de> | 2025-07-16 12:52:58 +0200 |
|---|---|---|
| committer | Markus Heiser <markus.heiser@darmarIT.de> | 2025-07-28 12:53:26 +0200 |
| commit | cf2cc87594e1d91779b36dca72d8dc7e34723132 (patch) | |
| tree | 97873e0b7d33032c16886fe0f7021dab38b9bfb0 /go.mod | |
| parent | 20a193f04c8da00de19993dd67a503d21ef87ac9 (diff) | |
[mod] create a Go project with the developer tools from Go
The `go.mod` was created by::
$ ./manage dev.env
(dev.env)$ go mod init searxng.org/devtools
(dev.env)$ go get -tool mvdan.cc/sh/v3/cmd/shfmt@v3.12.0
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -0,0 +1,14 @@ +module searxng.org/devtools + +go 1.24.5 + +tool mvdan.cc/sh/v3/cmd/shfmt + +require ( + github.com/google/renameio/v2 v2.0.0 // indirect + github.com/rogpeppe/go-internal v1.14.1 // indirect + golang.org/x/sys v0.33.0 // indirect + golang.org/x/term v0.32.0 // indirect + mvdan.cc/editorconfig v0.3.0 // indirect + mvdan.cc/sh/v3 v3.12.0 // indirect +) |