1
0
mirror of https://github.com/go-kratos/kratos.git synced 2025-01-16 02:47:03 +02:00
kratos/selector/options.go
longxboy 11cd43e3c3
refactor: unify selector filter (#2277)
* unify selector

Co-authored-by: caoguoliang01 <caoguoliang01@bilibili.com>
Co-authored-by: chenzhihui <zhihui_chen@foxmail.com>
2022-08-16 21:21:58 +08:00

17 lines
343 B
Go

package selector
// SelectOptions is Select Options.
type SelectOptions struct {
NodeFilters []NodeFilter
}
// SelectOption is Selector option.
type SelectOption func(*SelectOptions)
// WithNodeFilter with filter options
func WithNodeFilter(fn ...NodeFilter) SelectOption {
return func(opts *SelectOptions) {
opts.NodeFilters = fn
}
}