modwire 0.1.0

Tools for module organisation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# Tools for module organisation.
###### Example: `expose!`
```rust
// /foo.rs
// /bar.rs
// /foo_bar.rs
// lib.rs
::modwire::expose!(
    pub foo
    pub bar
        foo_bar
);
```