-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
27 lines (23 loc) · 783 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
module github.com/BertBR/RetroGamesBot-Go
go 1.17
require (
github.com/jackc/pgconn v1.12.1
github.com/jackc/pgx/v4 v4.16.1
)
require (
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
github.com/jackc/pgio v1.0.0 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgproto3/v2 v2.3.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
github.com/jackc/pgtype v1.11.0 // indirect
github.com/jackc/puddle v1.2.1 // indirect
github.com/lib/pq v1.10.6 // indirect
)
require (
github.com/joho/godotenv v1.4.0
github.com/robfig/cron/v3 v3.0.1
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
golang.org/x/text v0.3.7 // indirect
gopkg.in/telebot.v3 v3.0.0-20220122222605-10b70148f75f
)