2025-02-27 07:25:25 +08:00
|
|
|
module legalgo-BE-go
|
2025-02-22 12:50:26 +08:00
|
|
|
|
2025-03-03 18:59:25 +07:00
|
|
|
go 1.24
|
2025-02-22 12:50:26 +08:00
|
|
|
|
|
|
|
|
require (
|
2025-02-22 16:15:38 +08:00
|
|
|
github.com/golang-jwt/jwt/v5 v5.2.1
|
2025-02-27 06:58:12 +08:00
|
|
|
github.com/joho/godotenv v1.5.1
|
2025-03-03 18:59:25 +07:00
|
|
|
github.com/spf13/viper v1.19.0
|
2025-02-22 16:15:38 +08:00
|
|
|
go.uber.org/fx v1.23.0
|
2025-02-27 06:58:12 +08:00
|
|
|
golang.org/x/crypto v0.34.0
|
2025-03-03 18:59:25 +07:00
|
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
|
|
|
gorm.io/driver/postgres v1.4.7
|
2025-02-22 16:15:38 +08:00
|
|
|
)
|
|
|
|
|
|
2025-02-23 22:34:26 +08:00
|
|
|
require (
|
2025-03-03 18:59:25 +07:00
|
|
|
github.com/fsnotify/fsnotify v1.7.0 // indirect
|
2025-02-23 22:34:26 +08:00
|
|
|
github.com/gabriel-vasile/mimetype v1.4.8 // indirect
|
|
|
|
|
github.com/go-playground/locales v0.14.1 // indirect
|
|
|
|
|
github.com/go-playground/universal-translator v0.18.1 // indirect
|
2025-03-03 18:59:25 +07:00
|
|
|
github.com/hashicorp/hcl v1.0.0 // indirect
|
2025-02-23 22:34:26 +08:00
|
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
|
|
|
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
|
2025-03-03 18:59:25 +07:00
|
|
|
github.com/jackc/pgx/v5 v5.2.0 // indirect
|
2025-02-23 22:34:26 +08:00
|
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
|
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
2025-03-03 18:59:25 +07:00
|
|
|
github.com/jmespath/go-jmespath v0.4.0 // indirect
|
2025-02-23 22:34:26 +08:00
|
|
|
github.com/leodido/go-urn v1.4.0 // indirect
|
2025-03-03 18:59:25 +07:00
|
|
|
github.com/magiconair/properties v1.8.7 // indirect
|
|
|
|
|
github.com/mitchellh/mapstructure v1.5.0 // indirect
|
|
|
|
|
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
|
|
|
|
|
github.com/sagikazarmark/locafero v0.4.0 // indirect
|
|
|
|
|
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
|
|
|
|
|
github.com/sourcegraph/conc v0.3.0 // indirect
|
|
|
|
|
github.com/spf13/afero v1.11.0 // indirect
|
|
|
|
|
github.com/spf13/cast v1.6.0 // indirect
|
|
|
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
|
|
|
github.com/subosito/gotenv v1.6.0 // indirect
|
|
|
|
|
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
|
2025-02-23 22:34:26 +08:00
|
|
|
golang.org/x/net v0.34.0 // indirect
|
|
|
|
|
golang.org/x/text v0.22.0 // indirect
|
2025-03-03 18:59:25 +07:00
|
|
|
gopkg.in/ini.v1 v1.67.0 // indirect
|
2025-02-23 22:34:26 +08:00
|
|
|
)
|
|
|
|
|
|
2025-02-22 16:15:38 +08:00
|
|
|
require (
|
2025-03-03 18:59:25 +07:00
|
|
|
github.com/aws/aws-sdk-go v1.50.0
|
2025-02-22 16:15:38 +08:00
|
|
|
github.com/cespare/xxhash/v2 v2.3.0 // indirect
|
|
|
|
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
2025-02-27 06:58:12 +08:00
|
|
|
github.com/go-chi/chi/v5 v5.2.1
|
2025-02-22 16:15:38 +08:00
|
|
|
github.com/go-chi/cors v1.2.1
|
2025-02-23 22:34:26 +08:00
|
|
|
github.com/go-playground/validator/v10 v10.25.0
|
2025-03-05 21:21:44 +08:00
|
|
|
github.com/golang-jwt/jwt v3.2.2+incompatible
|
2025-02-23 22:34:26 +08:00
|
|
|
github.com/google/uuid v1.6.0
|
2025-02-27 06:58:12 +08:00
|
|
|
github.com/redis/go-redis/v9 v9.7.1
|
|
|
|
|
github.com/sirupsen/logrus v1.9.3
|
2025-02-22 12:50:26 +08:00
|
|
|
go.uber.org/dig v1.18.0 // indirect
|
|
|
|
|
go.uber.org/multierr v1.10.0 // indirect
|
|
|
|
|
go.uber.org/zap v1.26.0 // indirect
|
2025-02-22 16:15:38 +08:00
|
|
|
golang.org/x/sync v0.11.0
|
2025-02-22 12:50:26 +08:00
|
|
|
golang.org/x/sys v0.30.0 // indirect
|
2025-02-23 22:34:26 +08:00
|
|
|
gorm.io/gorm v1.25.12
|
2025-02-22 12:50:26 +08:00
|
|
|
)
|