summaryrefslogtreecommitdiff
path: root/go-tools
diff options
context:
space:
mode:
authorMike Crute <mike@crute.us>2022-01-30 09:47:17 -0800
committerMike Crute <mike@crute.us>2022-01-30 10:39:57 -0800
commit74c33667f4c317bed29a014306130b9dd8990538 (patch)
treea82a16a029192ede9a9494448b08b39bb185bc9f /go-tools
parent4262255f5c512e5c53a167c24a2eea2821f01ea5 (diff)
downloadgo_ddns_manager-74c33667f4c317bed29a014306130b9dd8990538.tar.bz2
go_ddns_manager-74c33667f4c317bed29a014306130b9dd8990538.tar.xz
go_ddns_manager-74c33667f4c317bed29a014306130b9dd8990538.zip
Fix go.mod and go.sum
Diffstat (limited to 'go-tools')
-rw-r--r--go-tools/tools.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/go-tools/tools.go b/go-tools/tools.go
new file mode 100644
index 0000000..5ca1663
--- /dev/null
+++ b/go-tools/tools.go
@@ -0,0 +1,8 @@
1package gotools
2
3// https://github.com/golang/go/wiki/Modules#how-can-i-track-tool-dependencies-for-a-module
4
5import (
6 _ "golang.org/x/tools/go/packages"
7 _ "golang.org/x/tools/internal/gocommand"
8)