(key string)
| 588 | // A KeyGetter is anything that knows how to get the value stored under a given key. |
| 589 | type KeyGetter interface { |
| 590 | GetByKey(key string) (interface{}, bool, error) |
| 591 | } |
| 592 | |
| 593 | // DeltaType is the type of a change (addition, deletion, etc) |
no outgoing calls
no test coverage detected