mod_use 0.2.3

pub mod xxx; use xxx::*;
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![no_std]

#[cfg(test)]
mod test;

#[macro_export]
macro_rules! mod_use {
    [ $($id:ident $(,)? )+ ] => {
        $(
            mod $id;
            pub use $id::*;
        )+
    };
}