Underlying entry.
| 552 | |
| 553 | // Underlying entry. |
| 554 | type kve struct { |
| 555 | bucket string |
| 556 | key string |
| 557 | value []byte |
| 558 | revision uint64 |
| 559 | delta uint64 |
| 560 | created time.Time |
| 561 | op KeyValueOp |
| 562 | } |
| 563 | |
| 564 | func (e *kve) Bucket() string { return e.bucket } |
| 565 | func (e *kve) Key() string { return e.key } |
nothing calls this directly
no outgoing calls
no test coverage detected