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: attr <module>
    authors: @FL03
*/
#[doc(inline)]
#[allow(unused_imports)]
pub use self::prelude::*;

mod model;

#[allow(unused_imports)]
mod prelude {
    pub use super::model::*;
}