aboutsummaryrefslogblamecommitdiffstats
path: root/common/db.go
blob: 6505e61c63950449d8cc36d3c446d7178ac4a769 (plain) (tree)
1
2
3
4
5
6
7
8
              




                                       
                          
                                



                            
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()
}