-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
33 lines (29 loc) · 986 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
31
32
33
module github.com/IUnlimit/telegram-bot-disrecall
go 1.22.2
require (
github.com/kylelemons/godebug v1.1.0
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible
github.com/robfig/cron/v3 v3.0.0
gorm.io/driver/sqlite v1.5.5
gorm.io/gorm v1.25.9
)
require (
github.com/go-sql-driver/mysql v1.7.0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/jonboulle/clockwork v0.4.0 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/mattn/go-sqlite3 v1.14.22 // indirect
gorm.io/datatypes v1.2.0 // indirect
gorm.io/driver/mysql v1.4.7 // indirect
)
require (
github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1
github.com/lestrrat-go/strftime v1.0.6 // indirect
github.com/mattn/go-colorable v0.1.13
github.com/pkg/errors v0.9.1 // indirect
github.com/sirupsen/logrus v1.9.3
github.com/valyala/bytebufferpool v1.0.0
golang.org/x/sys v0.19.0 // indirect
gopkg.in/yaml.v3 v3.0.1
)