aboutsummaryrefslogtreecommitdiffstats
path: root/common/db.go
blob: 7f3becd5a3b5563077330641b5920a5f2cd43537 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
package common

// Database interface
type Database interface {
    Put(key []byte, value []byte) error
    Get(key []byte) ([]byte, error)
    Delete(key []byte) error
    Close()
    Flush() error
}