-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgo.mod
27 lines (24 loc) · 887 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/alexyslozada/ecommerce
go 1.19
require (
github.com/google/uuid v1.3.0
github.com/jackc/pgx/v5 v5.0.4
github.com/joho/godotenv v1.4.0
github.com/labstack/echo/v4 v4.9.1
github.com/labstack/gommon v0.4.0
golang.org/x/crypto v0.1.0
)
require (
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/jackc/pgpassfile v1.0.0 // indirect
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
github.com/jackc/puddle/v2 v2.0.0 // indirect
github.com/mattn/go-colorable v0.1.11 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.1 // indirect
golang.org/x/net v0.1.0 // indirect
golang.org/x/sys v0.1.0 // indirect
golang.org/x/text v0.4.0 // indirect
golang.org/x/time v0.0.0-20201208040808-7e3f01d25324 // indirect
)