bitcasky 0.1.2

Bitcasky is a Rust implementation of the Bitcask key-value store
Documentation
1
2
3
4
5
6
7
8
9
10
mod file_type;
pub use self::file_type::*;

mod file_lock;
pub use self::file_lock::*;

mod core;
pub use self::core::*;

pub trait Handle {}