plugeth/common/db.go

11 lines
186 B
Go
Raw Normal View History

2015-03-16 10:27:38 +00:00
package common
2014-02-14 22:56:09 +00:00
// Database interface
type Database interface {
Put(key []byte, value []byte) error
2014-02-14 22:56:09 +00:00
Get(key []byte) ([]byte, error)
2014-02-24 11:12:01 +00:00
Delete(key []byte) error
2014-02-14 22:56:09 +00:00
Close()
Flush() error
2014-02-14 22:56:09 +00:00
}