2018-12-29 19:18:05 +03:00
|
|
|
// Package registry uses the go-micro registry for selection
|
2018-12-29 18:44:51 +03:00
|
|
|
package registry
|
|
|
|
|
|
|
|
import (
|
2020-01-30 14:39:00 +03:00
|
|
|
"github.com/micro/go-micro/v2/client/selector"
|
2018-12-29 18:44:51 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
// NewSelector returns a new registry selector
|
|
|
|
func NewSelector(opts ...selector.Option) selector.Selector {
|
|
|
|
return selector.NewSelector(opts...)
|
|
|
|
}
|