mirror of
https://github.com/paralus/paralus.git
synced 2026-03-05 18:40:18 +00:00
This includes: - Move entity_dao.go to common since it is generic database operation interface for all the components. - Added `GetX` method to EntityDAO interface. It get entity that matches provided field and value both. It is useful in case where service lookup for database entities not based on id, name. Signed-off-by: Akshay Gaikwad <akshay.gaikwad@rafay.co>
38 lines
1.3 KiB
Modula-2
38 lines
1.3 KiB
Modula-2
module github.com/RafaySystems/rcloud-base/components/common
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
github.com/gogo/protobuf v1.3.2
|
|
github.com/google/uuid v1.3.0
|
|
github.com/grpc-ecosystem/grpc-gateway v1.16.0
|
|
github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.2
|
|
github.com/julienschmidt/httprouter v1.3.0
|
|
github.com/processout/grpc-go-pool v1.2.1
|
|
github.com/segmentio/encoding v0.3.2
|
|
github.com/speps/go-hashids v2.0.0+incompatible
|
|
github.com/uptrace/bun v1.0.21
|
|
go.uber.org/zap v1.19.1
|
|
google.golang.org/genproto v0.0.0-20211208223120-3a66f561d7aa
|
|
google.golang.org/grpc v1.43.0
|
|
google.golang.org/protobuf v1.27.1
|
|
sigs.k8s.io/yaml v1.3.0
|
|
)
|
|
|
|
require (
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/klauspost/cpuid/v2 v2.0.6 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/segmentio/asm v1.1.0 // indirect
|
|
github.com/tmthrgd/go-hex v0.0.0-20190904060850-447a3041c3bc // indirect
|
|
github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect
|
|
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
|
|
go.uber.org/atomic v1.7.0 // indirect
|
|
go.uber.org/multierr v1.6.0 // indirect
|
|
golang.org/x/net v0.0.0-20210916014120-12bc252f5db8 // indirect
|
|
golang.org/x/sys v0.0.0-20211123173158-ef496fb156ab // indirect
|
|
golang.org/x/text v0.3.6 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
)
|