-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
28 lines (25 loc) · 978 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
module github.com/bbriggs/bytebot-party-pack
go 1.17
require (
github.com/alexliesenfeld/health v0.6.0
github.com/bytebot-chat/gateway-discord v0.3.3
github.com/go-redis/redis/v8 v8.11.5
github.com/rs/zerolog v1.28.0
github.com/satori/go.uuid v1.2.0
)
require (
github.com/bwmarrin/discordgo v0.27.1 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/golang/protobuf v1.4.2 // indirect
github.com/gorilla/websocket v1.5.0 // indirect
github.com/kr/pretty v0.2.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/sashabaranov/go-openai v1.8.0 // indirect
github.com/stretchr/objx v0.1.1 // indirect
golang.org/x/crypto v0.7.0 // indirect
golang.org/x/sys v0.6.0 // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
)