mirror of
https://github.com/tendermint/tendermint.git
synced 2026-02-12 14:51:13 +00:00
7 lines
75 B
Go
7 lines
75 B
Go
package db
|
|
|
|
type DB interface {
|
|
Get([]byte) []byte
|
|
Set([]byte, []byte)
|
|
}
|