-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
26 lines (22 loc) · 767 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
module github.com/flexoid/mergentle-reminder
go 1.20
require (
github.com/slack-go/slack v0.13.1
github.com/stretchr/testify v1.9.0
github.com/xanzy/go-gitlab v0.107.0
gopkg.in/yaml.v2 v2.4.0
)
require github.com/reugn/go-quartz v0.13.0
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/gorilla/websocket v1.5.3 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/stretchr/objx v0.5.2 // indirect
golang.org/x/oauth2 v0.21.0 // indirect
golang.org/x/sys v0.22.0 // indirect
golang.org/x/time v0.5.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)