-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgo.mod
27 lines (24 loc) · 942 Bytes
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
module tribe-payments-wallet-golang-interview-assignment
go 1.23.4
require (
github.com/go-chi/chi/v5 v5.1.0
github.com/kelseyhightower/envconfig v1.4.0
github.com/spf13/cobra v1.8.1
github.com/sumup-oss/go-pkgs v0.0.0-20240725083203-e41232a366b8
github.com/sumup-oss/go-pkgs/errors v1.0.0
go.uber.org/zap v1.27.0
)
require (
github.com/go-chi/chi v1.5.4 // indirect
github.com/hashicorp/go-syslog v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/mattes/go-expand-tilde v0.0.0-20150330173918-cb884138e64c // indirect
github.com/palantir/stacktrace v0.0.0-20161112013806-78658fd2d177 // indirect
github.com/sirupsen/logrus v1.9.3 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/testify v1.8.4 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/crypto v0.27.0 // indirect
golang.org/x/sys v0.25.0 // indirect
moul.io/chizap v1.0.3 // indirect
)