IdentifiableItem is an item that can be identified by a string. Implements list.DefaultItem.
| 26 | // IdentifiableItem is an item that can be identified by a string. Implements |
| 27 | // list.DefaultItem. |
| 28 | type IdentifiableItem interface { |
| 29 | list.DefaultItem |
| 30 | ID() string |
| 31 | } |
| 32 | |
| 33 | // ItemDelegate is a wrapper around list.ItemDelegate. |
| 34 | type ItemDelegate interface { |
no outgoing calls
no test coverage detected