arenabuddy_data 0.5.10

Storage of arenabuddy data
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod db;
mod directory;
mod error;
mod storage;

pub type Result<T, E = MatchDBError> = core::result::Result<T, E>;

pub use db::MatchDB;
pub use directory::DirectoryStorage;
pub use error::MatchDBError;
pub use storage::Storage;