12 lines
285 B
Go
12 lines
285 B
Go
// Package registry uses the go-micro registry for selection
|
|
package registry
|
|
|
|
import (
|
|
"github.com/micro/go-micro/client/selector"
|
|
)
|
|
|
|
// NewSelector returns a new registry selector
|
|
func NewSelector(opts ...selector.Option) selector.Selector {
|
|
return selector.NewSelector(opts...)
|
|
}
|