Skip to content

Commit ae85109

Browse files
committed
fix: syntax issues
removes use of github/errors package, uses fmt.Errorf instead changes syntax of error messages changes order of context as a parameter, uses it when passed into method renames bucket to collection other minor fixes for review
1 parent ac7201d commit ae85109

File tree

3 files changed

+101
-97
lines changed

3 files changed

+101
-97
lines changed

go.mod

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ require (
1010
github.com/pkg/errors v0.9.1
1111
github.com/smallstep/assert v0.0.0-20180720014142-de77670473b5
1212
go.etcd.io/bbolt v1.3.8
13+
go.mongodb.org/mongo-driver v1.13.1
1314
)
1415

1516
require (
@@ -27,9 +28,15 @@ require (
2728
github.com/jackc/pgproto3/v2 v2.3.2 // indirect
2829
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
2930
github.com/jackc/pgtype v1.14.0 // indirect
30-
github.com/klauspost/compress v1.12.3 // indirect
31+
github.com/klauspost/compress v1.13.6 // indirect
32+
github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe // indirect
33+
github.com/xdg-go/pbkdf2 v1.0.0 // indirect
34+
github.com/xdg-go/scram v1.1.2 // indirect
35+
github.com/xdg-go/stringprep v1.0.4 // indirect
36+
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect
3137
golang.org/x/crypto v0.17.0 // indirect
3238
golang.org/x/net v0.17.0 // indirect
39+
golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4 // indirect
3340
golang.org/x/sys v0.15.0 // indirect
3441
golang.org/x/text v0.14.0 // indirect
3542
google.golang.org/protobuf v1.25.0 // indirect

0 commit comments

Comments
 (0)