concision-macros 0.3.1

custom macros for the concision framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
    appellation: impls <module>
    authors: @FL03
*/
#[doc(inline)]
pub use self::prelude::*;

mod config;
mod model;

mod prelude {
    pub use super::config::*;
    pub use super::model::*;
}