retrieve 1.1.2

#[{pub_}mod_{pub_}use(a,b,c,...)] => {pub }mod a; {pub }use a::*; and also b,c,...
Documentation
use retrieve::*;

/// Example of in the below:
/// ```
/// #[mod_pub_use(a, b)]
/// ```
/// will be the same as:
/// ```
/// mod a;
/// pub use a::*;
/// mod b;
/// pub use b::*;
/// ```

#[mod_pub_use(a, b)]
pub struct X
{
 pub a: i32,
 pub b: i32
}