feat: add etcd resolver scheme, fix discov minor issue (#1281)

This commit is contained in:
Kevin Wan
2021-11-28 20:08:18 +08:00
committed by GitHub
parent 038491b7bc
commit d828c3f37e
5 changed files with 54 additions and 18 deletions

View File

@@ -0,0 +1,9 @@
package resolver
type etcdBuilder struct {
discovBuilder
}
func (b *etcdBuilder) Scheme() string {
return EtcdScheme
}