Reviewed-on: https://git.gocommunity.ru/walleri1/go_winter_work_2025/pulls/8 Co-authored-by: Vitaliy Turov <walleri1@yandex.ru> Co-committed-by: Vitaliy Turov <walleri1@yandex.ru>
36 lines
1.3 KiB
Modula-2
36 lines
1.3 KiB
Modula-2
module lesson3
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/gofiber/fiber/v2 v2.40.1
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible
|
|
)
|
|
|
|
require (
|
|
github.com/andybalholm/brotli v1.0.4 // indirect
|
|
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
|
|
github.com/jackc/pgconn v1.13.0 // indirect
|
|
github.com/jackc/pgio v1.0.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgproto3/v2 v2.3.1 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
|
|
github.com/jackc/pgtype v1.12.0 // indirect
|
|
github.com/jackc/pgx/v4 v4.17.2 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.4 // indirect
|
|
github.com/klauspost/compress v1.15.9 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.16 // indirect
|
|
github.com/mattn/go-runewidth v0.0.14 // indirect
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasthttp v1.41.0 // indirect
|
|
github.com/valyala/tcplisten v1.0.0 // indirect
|
|
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa
|
|
golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
gorm.io/driver/postgres v1.4.5
|
|
gorm.io/gorm v1.24.1-0.20221019064659-5dd2bb482755
|
|
)
|