You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
54 lines
2.0 KiB
54 lines
2.0 KiB
module git.samuelpua.com/telboon/ktm-train-bot/backend
|
|
|
|
go 1.18
|
|
|
|
require (
|
|
github.com/go-chi/chi v1.5.4
|
|
github.com/go-chi/render v1.0.1
|
|
github.com/go-playground/validator/v10 v10.11.0
|
|
github.com/go-rod/rod v0.109.1
|
|
github.com/google/uuid v1.3.0
|
|
github.com/swaggo/http-swagger v1.2.0
|
|
github.com/swaggo/swag v1.7.9
|
|
gorm.io/driver/postgres v1.2.3
|
|
gorm.io/gorm v1.22.5
|
|
)
|
|
|
|
require (
|
|
github.com/KyleBanks/depth v1.2.1 // indirect
|
|
github.com/PuerkitoBio/purell v1.1.1 // indirect
|
|
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect
|
|
github.com/go-openapi/jsonpointer v0.19.5 // indirect
|
|
github.com/go-openapi/jsonreference v0.19.6 // indirect
|
|
github.com/go-openapi/spec v0.20.4 // indirect
|
|
github.com/go-openapi/swag v0.19.15 // indirect
|
|
github.com/go-playground/locales v0.14.0 // indirect
|
|
github.com/go-playground/universal-translator v0.18.0 // indirect
|
|
github.com/josharian/intern v1.0.0 // indirect
|
|
github.com/leodido/go-urn v1.2.1 // indirect
|
|
github.com/mailru/easyjson v0.7.6 // indirect
|
|
github.com/swaggo/files v0.0.0-20210815190702-a29dd2bc99b2 // indirect
|
|
github.com/ysmood/goob v0.4.0 // indirect
|
|
github.com/ysmood/gson v0.7.1 // indirect
|
|
github.com/ysmood/leakless v0.8.0 // indirect
|
|
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
|
|
golang.org/x/tools v0.1.7 // indirect
|
|
)
|
|
|
|
require (
|
|
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
|
|
github.com/jackc/pgconn v1.10.1 // indirect
|
|
github.com/jackc/pgio v1.0.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgproto3/v2 v2.2.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
|
|
github.com/jackc/pgtype v1.9.0 // indirect
|
|
github.com/jackc/pgx/v4 v4.14.0 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.4 // indirect
|
|
github.com/joho/godotenv v1.4.0
|
|
golang.org/x/crypto v0.0.0-20220128200615-198e4374d7ed
|
|
golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
)
|