-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathgo.mod
26 lines (23 loc) · 793 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/fandujar/baymax
go 1.22.0
require (
github.com/go-chi/chi/v5 v5.1.0
github.com/nats-io/nats-server/v2 v2.10.20
github.com/nats-io/nats.go v1.37.0
github.com/rs/zerolog v1.33.0
github.com/sashabaranov/go-openai v1.31.0
github.com/slack-go/slack v0.14.0
)
require (
github.com/gorilla/websocket v1.4.2 // indirect
github.com/klauspost/compress v1.17.9 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/minio/highwayhash v1.0.3 // indirect
github.com/nats-io/jwt/v2 v2.5.8 // indirect
github.com/nats-io/nkeys v0.4.7 // indirect
github.com/nats-io/nuid v1.0.1 // indirect
golang.org/x/crypto v0.26.0 // indirect
golang.org/x/sys v0.24.0 // indirect
golang.org/x/time v0.6.0 // indirect
)