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