-
Notifications
You must be signed in to change notification settings - Fork 31
/
go.mod
38 lines (33 loc) · 1.28 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
34
35
36
37
38
module github.com/Southclaws/cj
go 1.21
replace github.com/go-resty/resty => gopkg.in/resty.v1 v1.12.0
replace gopkg.in/russross/blackfriday.v2 => github.com/russross/blackfriday/v2 v2.0.1
require (
github.com/Bios-Marcel/discordemojimap v1.0.1
github.com/bwmarrin/discordgo v0.27.1
github.com/globalsign/mgo v0.0.0-20181015135952-eeefdecb41b8
github.com/google/go-github/v28 v28.1.1
github.com/joho/godotenv v1.5.1
github.com/kelseyhightower/envconfig v1.4.0
github.com/kristoisberg/gonesyntees v0.0.0-20190527174556-0595a02f9399
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/pkg/errors v0.9.1
github.com/robfig/cron v1.2.0
github.com/stretchr/testify v1.9.0
go.uber.org/zap v1.27.0
golang.org/x/text v0.14.0
gopkg.in/xmlpath.v2 v2.0.0-20150820204837-860cbeca3ebc
)
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.1 // indirect
github.com/kr/pretty v0.3.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.uber.org/multierr v1.10.0 // indirect
golang.org/x/crypto v0.21.0 // indirect
golang.org/x/net v0.22.0 // indirect
golang.org/x/sys v0.18.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)