Skip to content

Commit c3bb0c9

Browse files
committed
Fix base58 import path
Signed-off-by: gearnode <[email protected]>
1 parent dad7e15 commit c3bb0c9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ module go.gearno.de/privatebin
33
go 1.22
44

55
require (
6-
gearno.de/base58 v0.0.0-20221013154836-14e0799f1471
76
github.com/spf13/cobra v1.8.0
7+
go.gearno.de/encoding/base58 v0.1.0
88
golang.org/x/crypto v0.21.0
99
)
1010

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
gearno.de/base58 v0.0.0-20221013154836-14e0799f1471 h1:KZmxUfL6vSZiJbuGpmvXAQLyp5EYvybJtqZsdMYYMB0=
2-
gearno.de/base58 v0.0.0-20221013154836-14e0799f1471/go.mod h1:QHJfGoIk3a8LjMTDxX3Dr/i9F6qltu1Ee4yUqwS8WuU=
31
github.com/cpuguy83/go-md2man/v2 v2.0.3/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
42
github.com/inconshreveable/mousetrap v1.1.0 h1:wN+x4NVGpMsO7ErUn/mUI3vEoE6Jt13X2s0bqwp9tc8=
53
github.com/inconshreveable/mousetrap v1.1.0/go.mod h1:vpF70FUmC8bwa3OWnCshd2FqLfsEA9PFc4w1p2J65bw=
@@ -8,6 +6,8 @@ github.com/spf13/cobra v1.8.0 h1:7aJaZx1B85qltLMc546zn58BxxfZdR/W22ej9CFoEf0=
86
github.com/spf13/cobra v1.8.0/go.mod h1:WXLWApfZ71AjXPya3WOlMsY9yMs7YeiHhFVlvLyhcho=
97
github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
108
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
9+
go.gearno.de/encoding/base58 v0.1.0 h1:3JBnzpClKHYgNs6ZfWPdTgELZOu92tO/XAUUNSLCGXs=
10+
go.gearno.de/encoding/base58 v0.1.0/go.mod h1:MoF1a0m5ooBndFSaMGOUtyYCTRQmsLm0+vmdrcrrok4=
1111
golang.org/x/crypto v0.21.0 h1:X31++rzVUdKhX5sWmSOFZxx8UW/ldWx55cbf08iNAMA=
1212
golang.org/x/crypto v0.21.0/go.mod h1:0BP7YvVV9gBbVKyeTG0Gyn+gZm94bibOW5BjDEYAOMs=
1313
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=

privatebin.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import (
3030
"strconv"
3131
"strings"
3232

33-
"gearno.de/base58"
33+
"go.gearno.de/encoding/base58"
3434
"golang.org/x/crypto/pbkdf2"
3535
)
3636

0 commit comments

Comments
 (0)