mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-25 10:41:41 +00:00
7 lines
75 B
Go
7 lines
75 B
Go
![]() |
package db
|
||
|
|
||
|
type Db interface {
|
||
|
Get([]byte) []byte
|
||
|
Set([]byte, []byte)
|
||
|
}
|