(name string, values []string)
| 180 | } |
| 181 | |
| 182 | func FilterLabel(name string, values []string) (*Info, error) { |
| 183 | return filterHandler.FilterLabel(name, values) |
| 184 | } |
| 185 | |
| 186 | func FilterGet(name string) (IFilter, bool) { |
| 187 | f, has := filterHandler.remoteFilters.Get(name) |
nothing calls this directly
no test coverage detected