1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-03-17 20:28:06 +02:00

12 lines
285 B
Go
Raw Normal View History

2018-12-29 16:18:05 +00:00
// Package registry uses the go-micro registry for selection
package registry
import (
2019-06-21 15:13:54 +01:00
"github.com/micro/go-micro/client/selector"
)
// NewSelector returns a new registry selector
func NewSelector(opts ...selector.Option) selector.Selector {
return selector.NewSelector(opts...)
}