mirror of
https://github.com/go-micro/go-micro.git
synced 2025-01-29 18:04:17 +02:00
f23638c036
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
12 lines
288 B
Go
12 lines
288 B
Go
// Package registry uses the go-micro registry for selection
|
|
package registry
|
|
|
|
import (
|
|
"github.com/micro/go-micro/v2/client/selector"
|
|
)
|
|
|
|
// NewSelector returns a new registry selector
|
|
func NewSelector(opts ...selector.Option) selector.Selector {
|
|
return selector.NewSelector(opts...)
|
|
}
|