Filterable represents an entity that can be filtered.
| 12 | |
| 13 | // Filterable represents an entity that can be filtered. |
| 14 | type Filterable interface { |
| 15 | Filter(string) |
| 16 | ClearFilter() |
| 17 | } |
| 18 | |
| 19 | // Textable represents a text resource. |
| 20 | type Textable interface { |
no outgoing calls
no test coverage detected
searching dependent graphs…