-
Notifications
You must be signed in to change notification settings - Fork 9
/
go.mod
31 lines (28 loc) · 1.13 KB
/
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
28
29
30
31
module github.com/enova/scout
go 1.19
require (
github.com/aws/aws-sdk-go v1.44.93
github.com/goamz/goamz v0.0.0-20180131231218-8b901b531db8
github.com/jrallison/go-workers v0.0.0-20180112190529-dbf81d0b75bb
github.com/sirupsen/logrus v1.9.0
github.com/stretchr/testify v1.8.0
gopkg.in/redis.v5 v5.2.9
gopkg.in/urfave/cli.v1 v1.20.0
gopkg.in/yaml.v2 v2.4.0
)
require (
github.com/bitly/go-simplejson v0.5.0 // indirect
github.com/bmizerany/assert v0.0.0-20160611221934-b7ed37b82869 // indirect
github.com/customerio/gospec v0.0.0-20130710230057-a5cc0e48aa39 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/garyburd/redigo v1.6.2 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/onsi/ginkgo v1.16.5 // indirect
github.com/onsi/gomega v1.20.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/vaughan0/go-ini v0.0.0-20130923145212-a98ad7ee00ec // indirect
golang.org/x/sys v0.0.0-20220907062415-87db552b00fd // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)