Putter wraps the database write operation supported by both batches and regular databases.
| 9 | |
| 10 | // Putter wraps the database write operation supported by both batches and regular databases. |
| 11 | type Putter interface { |
| 12 | Put(key []byte, value []byte) error |
| 13 | } |
| 14 | |
| 15 | // Deleter wraps the database delete operation supported by both batches and regular databases. |
| 16 | type Deleter interface { |
no outgoing calls
no test coverage detected