mirror of
https://github.com/AuxXxilium/docker-ddns-server.git
synced 2024-11-23 14:50:59 +07:00
7685e2adcf
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
35 lines
1.2 KiB
Modula-2
35 lines
1.2 KiB
Modula-2
module github.com/AuxXxilium/docker-ddns-server/dyndns
|
|
|
|
go 1.22
|
|
|
|
require (
|
|
github.com/foolin/goview v0.3.0
|
|
github.com/go-playground/validator/v10 v10.20.0
|
|
github.com/labstack/echo/v4 v4.12.0
|
|
github.com/labstack/gommon v0.4.2
|
|
github.com/tg123/go-htpasswd v1.2.2
|
|
gorm.io/driver/sqlite v1.5.5
|
|
gorm.io/gorm v1.25.10
|
|
)
|
|
|
|
require (
|
|
github.com/GehirnInc/crypt v0.0.0-20200316065508-bb7000b8a962 // indirect
|
|
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
|
github.com/leodido/go-urn v1.4.0 // indirect
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mattn/go-sqlite3 v1.14.17 // indirect
|
|
github.com/valyala/bytebufferpool v1.0.0 // indirect
|
|
github.com/valyala/fasttemplate v1.2.2 // indirect
|
|
golang.org/x/crypto v0.22.0 // indirect
|
|
golang.org/x/net v0.24.0 // indirect
|
|
golang.org/x/sys v0.19.0 // indirect
|
|
golang.org/x/text v0.14.0 // indirect
|
|
golang.org/x/time v0.5.0 // indirect
|
|
)
|