summaryrefslogtreecommitdiff
path: root/internal/tools/tools.go
diff options
context:
space:
mode:
authorSaumit <justsaumit@protonmail.com>2025-09-27 02:14:26 +0530
committerSaumit <justsaumit@protonmail.com>2025-09-27 02:14:26 +0530
commit82e03978b89938219958032efb1448cc76baa181 (patch)
tree626f3e54d52ecd49be0ed3bee30abacc0453d081 /internal/tools/tools.go
Initial snapshot - OpenTelemetry demo 2.1.3 -f
Diffstat (limited to 'internal/tools/tools.go')
-rw-r--r--internal/tools/tools.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/internal/tools/tools.go b/internal/tools/tools.go
new file mode 100644
index 0000000..ef72fbe
--- /dev/null
+++ b/internal/tools/tools.go
@@ -0,0 +1,15 @@
+//
+
+//go:build tools
+// +build tools
+
+package tools
+
+// This file follows the recommendation at
+// https://go.dev/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
+// on how to pin tooling dependencies to a go.mod file.
+// This ensures that all systems use the same version of tools in addition to regular dependencies.
+
+import (
+ _ "github.com/client9/misspell/cmd/misspell"
+)