user-srv/go.mod

57 lines
2.1 KiB
Modula-2
Raw Normal View History

2024-01-31 07:35:17 +00:00
module user-srv
2024-01-31 09:32:39 +00:00
go 1.21.4
toolchain go1.21.6
2024-01-31 07:35:17 +00:00
require (
github.com/gomodule/redigo v1.8.9
github.com/grpc-ecosystem/grpc-gateway/v2 v2.19.1
github.com/hashicorp/consul/api v1.27.0
github.com/lestrrat-go/file-rotatelogs v2.4.0+incompatible
github.com/rifflock/lfshook v0.0.0-20180920164130-b9218ef580f5
github.com/sirupsen/logrus v1.9.3
google.golang.org/genproto/googleapis/api v0.0.0-20240125205218-1f4bbc51befe
google.golang.org/grpc v1.61.0
google.golang.org/protobuf v1.32.0
gorm.io/driver/mysql v1.5.2
gorm.io/gorm v1.25.6
gorm.io/plugin/dbresolver v1.5.0
)
2024-01-31 09:32:39 +00:00
require (
github.com/bwmarrin/snowflake v0.3.0 // indirect
myschools.me/home-care/homecare-base v0.0.0-20240117071311-7c63d4cc0d29 // indirect
)
2024-01-31 07:35:17 +00:00
require (
github.com/armon/go-metrics v0.4.1 // indirect
github.com/fatih/color v1.14.1 // indirect
github.com/go-sql-driver/mysql v1.7.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/hashicorp/errwrap v1.1.0 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-hclog v1.5.0 // indirect
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
github.com/hashicorp/golang-lru v0.5.4 // indirect
github.com/hashicorp/serf v0.10.1 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/jonboulle/clockwork v0.4.0 // indirect
github.com/lestrrat-go/strftime v1.0.6 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
2024-01-31 09:32:39 +00:00
github.com/mattn/go-isatty v0.0.19 // indirect
2024-01-31 07:35:17 +00:00
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect
golang.org/x/net v0.20.0 // indirect
golang.org/x/sys v0.16.0 // indirect
golang.org/x/text v0.14.0 // indirect
google.golang.org/genproto v0.0.0-20240116215550-a9fa1716bcac // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20240125205218-1f4bbc51befe // indirect
2024-01-31 09:32:39 +00:00
myschools.me/tcq/user-base v0.0.0-20240131081333-dd818f008c5f
2024-01-31 07:35:17 +00:00
)