-
Notifications
You must be signed in to change notification settings - Fork 9
/
go.mod
33 lines (30 loc) · 1.11 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
32
33
module golang.linkedin.com/iris-message-processor/iris-message-processor
go 1.17
require (
github.com/appleboy/go-fcm v0.1.5
github.com/go-sql-driver/mysql v1.6.0
github.com/jarcoal/httpmock v1.3.0
github.com/julienschmidt/httprouter v1.3.0
github.com/natefinch/lumberjack v2.0.0+incompatible
github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475
github.com/robfig/cron v1.2.0
github.com/russross/blackfriday v1.6.0
github.com/satori/go.uuid v1.2.0
github.com/slack-go/slack v0.10.2
github.com/stretchr/testify v1.7.0
github.com/twilio/twilio-go v0.24.1
go.uber.org/zap v1.21.0
honnef.co/go/tools v0.4.3
)
require (
github.com/BurntSushi/toml v1.2.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/golang/mock v1.6.0 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
golang.org/x/tools v0.4.1-0.20221208213631-3f74d914ae6d // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)