1mod children; 2 3#[proc_macro_derive(MrmlChildren)] 4pub fn derive_children(input: proc_macro::TokenStream) -> proc_macro::TokenStream { 5 crate::children::derive(input) 6}