blob: 6505e61c63950449d8cc36d3c446d7178ac4a769 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
package common
// Database interface
type Database interface {
Put(key []byte, value []byte)
Get(key []byte) ([]byte, error)
//GetKeys() []*Key
Delete(key []byte) error
LastKnownTD() []byte
Close()
Print()
}
|