-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
24 lines (21 loc) · 815 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
module github.com/hcavarsan/slack-opsgenie-bot
go 1.23.4
require (
github.com/GoogleCloudPlatform/functions-framework-go v1.9.0
github.com/gorilla/mux v1.8.1
github.com/joho/godotenv v1.5.1
github.com/sirupsen/logrus v1.9.3
github.com/slack-go/slack v0.15.0
)
require (
github.com/cloudevents/sdk-go/v2 v2.15.2 // indirect
github.com/google/uuid v1.6.0 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/json-iterator/go v1.1.10 // indirect
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
go.uber.org/atomic v1.4.0 // indirect
go.uber.org/multierr v1.1.0 // indirect
go.uber.org/zap v1.10.0 // indirect
golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
)