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.
41 lines
1.4 KiB
41 lines
1.4 KiB
2 years ago
|
module customer
|
||
|
|
||
|
go 1.17
|
||
|
|
||
|
require (
|
||
|
github.com/go-kratos/kratos/v2 v2.4.1
|
||
|
github.com/golang-jwt/jwt/v4 v4.4.1
|
||
|
github.com/google/wire v0.5.0
|
||
|
github.com/redis/go-redis/v9 v9.0.2
|
||
|
go.uber.org/automaxprocs v1.5.1
|
||
|
google.golang.org/genproto v0.0.0-20220524023933-508584e28198
|
||
|
google.golang.org/grpc v1.46.2
|
||
|
google.golang.org/protobuf v1.28.0
|
||
|
gorm.io/driver/mysql v1.4.7
|
||
|
gorm.io/gorm v1.24.6
|
||
|
)
|
||
|
|
||
|
require (
|
||
|
github.com/cespare/xxhash/v2 v2.2.0 // indirect
|
||
|
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
|
||
|
github.com/fsnotify/fsnotify v1.5.4 // indirect
|
||
|
github.com/go-logr/logr v1.2.3 // indirect
|
||
|
github.com/go-logr/stdr v1.2.2 // indirect
|
||
|
github.com/go-playground/form/v4 v4.2.0 // indirect
|
||
|
github.com/go-sql-driver/mysql v1.7.0 // indirect
|
||
|
github.com/golang/protobuf v1.5.2 // indirect
|
||
|
github.com/google/uuid v1.3.0 // indirect
|
||
|
github.com/gorilla/mux v1.8.0 // indirect
|
||
|
github.com/imdario/mergo v0.3.12 // indirect
|
||
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
||
|
github.com/jinzhu/now v1.1.5 // indirect
|
||
|
github.com/kr/text v0.2.0 // indirect
|
||
|
go.opentelemetry.io/otel v1.7.0 // indirect
|
||
|
go.opentelemetry.io/otel/trace v1.7.0 // indirect
|
||
|
golang.org/x/net v0.0.0-20220520000938-2e3eb7b945c2 // indirect
|
||
|
golang.org/x/sync v0.0.0-20220513210516-0976fa681c29 // indirect
|
||
|
golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a // indirect
|
||
|
golang.org/x/text v0.3.7 // indirect
|
||
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
||
|
)
|