summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bin-src/crtsh-pem2html.go2
-rw-r--r--bin-src/diff-pem2html.go2
-rw-r--r--bin-src/pem-diff.go2
-rw-r--r--bin-src/tls-pem2html.go2
-rw-r--r--go.mod3
5 files changed, 7 insertions, 4 deletions
diff --git a/bin-src/crtsh-pem2html.go b/bin-src/crtsh-pem2html.go
index bb1e98e..1f2932a 100644
--- a/bin-src/crtsh-pem2html.go
+++ b/bin-src/crtsh-pem2html.go
@@ -10,7 +10,7 @@ import (
"sort"
"time"
- "./util"
+ "git.lukeshu.com/dashboard/bin-src/util"
)
func handleErr(err error, str string, a ...interface{}) {
diff --git a/bin-src/diff-pem2html.go b/bin-src/diff-pem2html.go
index f3b25ff..ba5be80 100644
--- a/bin-src/diff-pem2html.go
+++ b/bin-src/diff-pem2html.go
@@ -8,7 +8,7 @@ import (
"io/ioutil"
"os"
- "./util"
+ "git.lukeshu.com/dashboard/bin-src/util"
)
func handleErr(err error, str string, a ...interface{}) {
diff --git a/bin-src/pem-diff.go b/bin-src/pem-diff.go
index 0159349..acda685 100644
--- a/bin-src/pem-diff.go
+++ b/bin-src/pem-diff.go
@@ -11,7 +11,7 @@ import (
"sort"
"strings"
- "./util"
+ "git.lukeshu.com/dashboard/bin-src/util"
)
func handleErr(err error, str string, a ...interface{}) {
diff --git a/bin-src/tls-pem2html.go b/bin-src/tls-pem2html.go
index bc14f9a..02b38a0 100644
--- a/bin-src/tls-pem2html.go
+++ b/bin-src/tls-pem2html.go
@@ -10,7 +10,7 @@ import (
"sort"
"time"
- "./util"
+ "git.lukeshu.com/dashboard/bin-src/util"
)
func handleErr(err error, str string, a ...interface{}) {
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..2d127d7
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,3 @@
+module git.lukeshu.com/dashboard
+
+go 1.20