(scope string)
| 144 | } |
| 145 | |
| 146 | func (f *Handler) Options(scope string) (map[string]*Option, bool) { |
| 147 | options, has := f.options.Get(scope) |
| 148 | if !has { |
| 149 | return nil, false |
| 150 | } |
| 151 | return options.All(), true |
| 152 | } |
| 153 | |
| 154 | func (f *Handler) FilterLabel(name string, values []string) (*Info, error) { |
| 155 | if tmp, has := f.remoteFilters.Get(name); has { |