add registry base interface, mdns, noop implementations, add resolver, client

This commit is contained in:
2020-11-08 19:28:33 +01:00
parent 87b947cea3
commit 9f5f03b862
29 changed files with 4341 additions and 41 deletions

11
go.mod
View File

@ -3,13 +3,16 @@ module gitlab.bertha.cloud/partitio/lab/grpc
go 1.13
require (
github.com/golang/protobuf v1.3.2
github.com/golang/protobuf v1.4.0
github.com/google/uuid v1.1.2
github.com/grpc-ecosystem/go-grpc-middleware v1.1.0
github.com/jinzhu/gorm v1.9.12
github.com/nats-io/stan.go v0.6.0 // indirect
github.com/miekg/dns v1.1.35
github.com/sirupsen/logrus v1.4.2
github.com/spf13/cobra v0.0.5
github.com/spf13/pflag v1.0.3
github.com/spf13/viper v1.6.2
go.uber.org/multierr v1.1.0
github.com/stretchr/testify v1.4.0
go.uber.org/multierr v1.3.0
golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2
google.golang.org/grpc v1.26.0
)