#![deny(clippy::all, clippy::pedantic)] mod reflection; mod util; #[proc_macro_derive(Reflection)] pub fn reflection_derive(input: proc_macro::TokenStream) -> proc_macro::TokenStream { reflection::derive(input.into()).into() }