53 lines
2.3 KiB
Modula-2
53 lines
2.3 KiB
Modula-2
module gitlab.celogeek.com/photos/api
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/dsoprea/go-exif/v3 v3.0.0-20210625224831-a6301f85c82b
|
|
github.com/gin-gonic/gin v1.7.7
|
|
github.com/go-resty/resty/v2 v2.7.0
|
|
github.com/google/uuid v1.3.0
|
|
github.com/jackc/pgconn v1.12.0
|
|
github.com/jessevdk/go-flags v1.5.0
|
|
github.com/schollz/progressbar/v3 v3.8.6
|
|
gopkg.in/validator.v2 v2.0.0-20210331031555-b37d688a7fb0
|
|
gorm.io/driver/postgres v1.3.5
|
|
gorm.io/gorm v1.23.4
|
|
)
|
|
|
|
require (
|
|
github.com/dsoprea/go-logging v0.0.0-20200710184922-b02d349568dd // indirect
|
|
github.com/dsoprea/go-utility/v2 v2.0.0-20200717064901-2fccff4aa15e // indirect
|
|
github.com/gin-contrib/sse v0.1.0 // indirect
|
|
github.com/go-errors/errors v1.1.1 // indirect
|
|
github.com/go-playground/locales v0.13.0 // indirect
|
|
github.com/go-playground/universal-translator v0.17.0 // indirect
|
|
github.com/go-playground/validator/v10 v10.4.1 // indirect
|
|
github.com/golang/geo v0.0.0-20200319012246-673a6f80352d // indirect
|
|
github.com/golang/protobuf v1.3.3 // indirect
|
|
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
|
|
github.com/jackc/pgio v1.0.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgproto3/v2 v2.3.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20200714003250-2b9c44734f2b // indirect
|
|
github.com/jackc/pgtype v1.11.0 // indirect
|
|
github.com/jackc/pgx/v4 v4.16.0 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.4 // indirect
|
|
github.com/json-iterator/go v1.1.9 // indirect
|
|
github.com/leodido/go-urn v1.2.0 // indirect
|
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
|
github.com/mattn/go-runewidth v0.0.13 // indirect
|
|
github.com/mitchellh/colorstring v0.0.0-20190213212951-d06e56a500db // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect
|
|
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect
|
|
github.com/rivo/uniseg v0.2.0 // indirect
|
|
github.com/ugorji/go/codec v1.1.7 // indirect
|
|
golang.org/x/crypto v0.0.0-20220131195533-30dcbda58838 // indirect
|
|
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 // indirect
|
|
golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27 // indirect
|
|
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
gopkg.in/yaml.v2 v2.3.0 // indirect
|
|
)
|