kvsd 0.1.3

Simple key value store
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Config module manage controllable values

mod initialize;
pub use self::initialize::Initializer;

mod config;
pub use self::config::Config;

pub(crate) mod filepath {
    pub const NAMESPACES: &str = "namespaces";
    pub const NS_SYSTEM: &str = "system";
    pub const NS_DEFAULT: &str = "default";
}