tendermint/db/db.go

7 lines
75 B
Go
Raw Normal View History

2014-08-10 16:35:08 -07:00
package db
type Db interface {
Get([]byte) []byte
Set([]byte, []byte)
}