diff options
Diffstat (limited to 'rola-utils/space-system/macros/src/lib.rs')
| -rw-r--r-- | rola-utils/space-system/macros/src/lib.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/rola-utils/space-system/macros/src/lib.rs b/rola-utils/space-system/macros/src/lib.rs new file mode 100644 index 0000000..838155c --- /dev/null +++ b/rola-utils/space-system/macros/src/lib.rs @@ -0,0 +1,9 @@ +use crate::space_root_test::internal_space_root_test_derive; +use proc_macro::TokenStream; + +mod space_root_test; + +#[proc_macro_derive(SpaceRootTest, attributes(space_root_test_generic))] +pub fn space_root_test_derive(input: TokenStream) -> TokenStream { + internal_space_root_test_derive(input) +} |
