kve is the implementation of KeyValueEntry
| 983 | |
| 984 | // kve is the implementation of KeyValueEntry |
| 985 | type kve struct { |
| 986 | bucket string |
| 987 | key string |
| 988 | value []byte |
| 989 | revision uint64 |
| 990 | delta uint64 |
| 991 | created time.Time |
| 992 | op KeyValueOp |
| 993 | } |
| 994 | |
| 995 | func (e *kve) Bucket() string { return e.bucket } |
| 996 | func (e *kve) Key() string { return e.key } |
nothing calls this directly
no outgoing calls
no test coverage detected