Skip to content

Commit 3cb3e10

Browse files
committed
go mod
1 parent 51f2781 commit 3cb3e10

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

src/go.mod

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,14 @@ module bookmark-manager
22

33
go 1.18
44

5+
require (
6+
github.com/spf13/cobra v1.6.1
7+
github.com/yosssi/gohtml v0.0.0-20201013000340-ee4748c638f4
8+
gopkg.in/yaml.v3 v3.0.1
9+
)
10+
511
require (
612
github.com/inconshreveable/mousetrap v1.0.1 // indirect
7-
github.com/spf13/cobra v1.6.1 // indirect
813
github.com/spf13/pflag v1.0.5 // indirect
9-
github.com/yosssi/gohtml v0.0.0-20201013000340-ee4748c638f4 // indirect
1014
golang.org/x/net v0.7.0 // indirect
11-
gopkg.in/yaml.v3 v3.0.1 // indirect
1215
)

src/go.sum

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ github.com/yosssi/gohtml v0.0.0-20201013000340-ee4748c638f4 h1:0sw0nJM544SpsihWx
1010
github.com/yosssi/gohtml v0.0.0-20201013000340-ee4748c638f4/go.mod h1:+ccdNT0xMY1dtc5XBxumbYfOUhmduiGudqaDgD2rVRE=
1111
golang.org/x/net v0.7.0 h1:rJrUqqhjsgNp7KqAIc25s9pZnjU7TUcSY7HcVZjdn1g=
1212
golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
13+
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
1314
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
1415
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
1516
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=

0 commit comments

Comments
 (0)