-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
31 lines (28 loc) · 1.05 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/rammyblog/go-product-subscriptions
go 1.21.0
require (
github.com/DATA-DOG/go-sqlmock v1.5.2
github.com/go-chi/chi/v5 v5.0.11
github.com/go-chi/render v1.0.3
github.com/go-playground/validator v9.31.0+incompatible
github.com/golang-jwt/jwt/v5 v5.2.0
github.com/joho/godotenv v1.5.1
github.com/rammyblog/go-paystack v0.0.0-20240112235134-1411b80676a2
golang.org/x/crypto v0.17.0
gopkg.in/go-playground/assert.v1 v1.2.1
gorm.io/driver/postgres v1.5.4
gorm.io/gorm v1.25.5
)
require (
github.com/ajg/form v1.5.1 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
github.com/jackc/pgx/v5 v5.4.3 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/leodido/go-urn v1.2.4 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
golang.org/x/text v0.14.0 // indirect
)