Skip to content

Commit 023d2cd

Browse files
committed
go mod tidy
1 parent ca60678 commit 023d2cd

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

go.mod

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@ module github.com/endiangroup/cmdjail
22

33
go 1.24.3
44

5+
require (
6+
github.com/kelseyhightower/envconfig v1.4.0
7+
github.com/spf13/pflag v1.0.6
8+
github.com/stretchr/testify v1.10.0
9+
)
10+
511
require (
612
github.com/davecgh/go-spew v1.1.1 // indirect
7-
github.com/kelseyhightower/envconfig v1.4.0 // indirect
813
github.com/pmezard/go-difflib v1.0.0 // indirect
9-
github.com/spf13/pflag v1.0.6 // indirect
10-
github.com/stretchr/testify v1.10.0 // indirect
1114
gopkg.in/yaml.v3 v3.0.1 // indirect
1215
)

go.sum

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ github.com/spf13/pflag v1.0.6 h1:jFzHGLGAlb3ruxLB8MhbI6A8+AQX/2eW4qeyNZXNp2o=
88
github.com/spf13/pflag v1.0.6/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
99
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
1010
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
11+
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
1112
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
1213
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
1314
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

0 commit comments

Comments
 (0)