[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>
This commit is contained in:
Markus Heiser
2025-07-16 12:52:58 +02:00
committed by Markus Heiser
parent 20a193f04c
commit cf2cc87594
3 changed files with 38 additions and 4 deletions

14
go.mod Normal file
View File

@@ -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
)