tendermint/db/db.go
2014-10-04 19:16:49 -07:00

7 lines
75 B
Go

package db
type DB interface {
Get([]byte) []byte
Set([]byte, []byte)
}