ayun_config/
lib.rs

1pub mod config;
2pub mod error;
3pub mod support;
4pub mod traits;
5
6pub type ConfigResult<T, E = error::Error> = Result<T, E>;
7
8#[derive(Debug, Default)]
9pub struct Config {
10    inner: toml::Table,
11    source: traits::Source,
12}
13
14// re-export
15pub use ayun_core::*;