plugeth/common/db.go
2015-06-21 16:59:15 +02:00

11 lines
186 B
Go

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
}