Like Rust's Proc macros. Now we have preprocessor recursion to worry about. I also made a cool macro for enums
12 lines
174 B
Rust
12 lines
174 B
Rust
mod coding;
|
|
mod helpers;
|
|
mod hierarchy;
|
|
mod relations;
|
|
mod api_conv;
|
|
|
|
pub use coding::*;
|
|
pub use helpers::*;
|
|
pub use hierarchy::*;
|
|
pub use relations::*;
|
|
pub use api_conv::*;
|