-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
27 lines (23 loc) · 882 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/fikryfahrezy/ffood
go 1.17
require (
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/go-sql-driver/mysql v1.6.0
github.com/gofiber/fiber/v2 v2.15.0
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.2 // indirect
github.com/joho/godotenv v1.4.0
golang.org/x/crypto v0.0.0-20211108221036-ceb1ce70b4fa
gorm.io/driver/mysql v1.1.3
gorm.io/gorm v1.22.2
)
require github.com/go-ozzo/ozzo-validation/v4 v4.3.0
require (
github.com/andybalholm/brotli v1.0.2 // indirect
github.com/asaskevich/govalidator v0.0.0-20200108200545-475eaeb16496 // indirect
github.com/klauspost/compress v1.12.2 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.26.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect
)