You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
kratos/selector/options.go

16 lines
343 B

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
}
}