1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
macro_rules! auto_import {
    {$($v:ident,)*} => {
		$(
			mod $v;
			pub use $v::*;
		)*
	};
}

auto_import! {
    anchor,
    arc,
    circle,
    fit,
    layout,
    line,
    padding,
    polygone,
    rectangle,
    textbox,
    thick_arc,
}