Skip to content

Commit 8c8f06e

Browse files
authored
Merge pull request #1 from katexochen/modules
migrate to Go modules
2 parents 7907111 + 098a5ce commit 8c8f06e

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

go.mod

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module github.com/CTFd/snicat
2+
3+
go 1.22.3
4+
5+
require git.rootprojects.org/root/sclient.go v1.5.0

go.sum

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
git.rootprojects.org/root/sclient.go v1.5.0 h1:CQ0X5aP0cofXpjyiXED8z0DH/fAlEoBpcYZ1Bp4v9Bo=
2+
git.rootprojects.org/root/sclient.go v1.5.0/go.mod h1:4c1wnsd+mAx50C9c2AkG0HMX9Eqlp5UvOPebX97WbCk=

snicat.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strconv"
88
"strings"
99

10-
"github.com/therootcompany/sclient"
10+
sclient "git.rootprojects.org/root/sclient.go"
1111
)
1212

1313
var insecure = flag.Bool("insecure", false, "Disable verification of server SSL certificate")

0 commit comments

Comments
 (0)