summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2025-07-16 12:52:58 +0200
committerMarkus Heiser <markus.heiser@darmarIT.de>2025-07-28 12:53:26 +0200
commitcf2cc87594e1d91779b36dca72d8dc7e34723132 (patch)
tree97873e0b7d33032c16886fe0f7021dab38b9bfb0 /go.mod
parent20a193f04c8da00de19993dd67a503d21ef87ac9 (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.mod14
1 files changed, 14 insertions, 0 deletions
diff --git a/go.mod b/go.mod
new file mode 100644
index 000000000..14cb6ad53
--- /dev/null
+++ b/go.mod
@@ -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
+)