tendermint/db/db.go
2014-08-30 04:17:10 -07:00

7 lines
75 B
Go

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