-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
30 lines (26 loc) · 992 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
27
28
29
30
module github.com/ethanthatonekid/gitcord
go 1.19
require (
github.com/google/go-github/v47 v47.1.0
github.com/yuin/goldmark v1.3.2
go4.org v0.0.0-20201209231011-d4a079459e60
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect
)
require (
github.com/diamondburned/arikawa/v3 v3.1.1-0.20221103093025-87c479a2dcd4
github.com/golang/protobuf v1.5.2 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/gorilla/schema v1.2.0 // indirect
github.com/joho/godotenv v1.4.0
github.com/pkg/errors v0.9.1
github.com/urfave/cli/v2 v2.16.3
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
golang.org/x/net v0.0.0-20220624214902-1bab6f366d9e // indirect
golang.org/x/oauth2 v0.0.0-20220909003341-f21342109be1
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.28.0 // indirect
)