mirror of
https://github.com/artvs18/PostgreSQL-docker-image.git
synced 2025-06-04 05:58:00 +02:00
22 lines
598 B
Modula-2
22 lines
598 B
Modula-2
module postgres
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/labstack/echo v3.3.10+incompatible
|
|
github.com/sirupsen/logrus v1.9.0
|
|
)
|
|
|
|
require (
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
|
|
github.com/labstack/gommon v0.4.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.2 // indirect
|
|
golang.org/x/crypto v0.5.0 // indirect
|
|
golang.org/x/net v0.5.0 // indirect
|
|
golang.org/x/sys v0.4.0 // indirect
|
|
golang.org/x/text v0.6.0 // indirect
|
|
)
|