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.
17 lines
343 B
17 lines
343 B
2 years ago
|
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
|
||
|
}
|
||
|
}
|