mirror of
https://github.com/go-micro/go-micro.git
synced 2024-12-12 08:23:58 +02:00
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...)
|
||
|
}
|