-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
31 lines (28 loc) · 1.11 KB
/
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
module github.com/marc/get-food-to-go
go 1.18
require (
github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.0.0-rc1.0.20210608165722-fb1de2fb48dd
github.com/jinzhu/now v1.1.2
github.com/joho/godotenv v1.3.0
github.com/natefinch/lumberjack v2.0.0+incompatible
github.com/stretchr/testify v1.7.0
github.com/wcharczuk/go-chart/v2 v2.1.0
go.uber.org/zap v1.17.0
gopkg.in/mail.v2 v2.3.1
gorm.io/driver/mysql v1.1.0
gorm.io/gorm v1.21.10
)
require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/go-sql-driver/mysql v1.6.0 // indirect
github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
go.uber.org/atomic v1.7.0 // indirect
go.uber.org/multierr v1.7.0 // indirect
golang.org/x/image v0.0.0-20200927104501-e162460cd6b5 // indirect
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)