Files
orchid/orchid-api-traits/src/lib.rs
Lawrence Bethlenfalvy 3a3ae98aff Began implementing fully isomorphic macros
Like Rust's Proc macros. Now we have preprocessor recursion to worry about. I also made a cool macro for enums
2024-10-14 00:13:09 +02:00

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::*;