db/interface/
kv.rs

1use super::misc::Uint8Array;
2
3/// Key-value store
4pub type Key = Uint8Array;
5pub type Val = Uint8Array;