1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
//! `rdb` feature provides a simple way to store things with relations into ethereum runtime.

/// DB feature flag to enable the different feature for db
#[cfg_attr(any(feature = "debug", test), derive(Debug))]
#[derive(PartialEq)]
pub enum Feature {
    Default = 1,
}

mod db;
pub use db::*;

mod table;
pub use table::*;

pub mod traits;

pub mod errors;