modmacros;/// `#[ktest]` attribute macro
#[proc_macro_attribute]pubfnktest(attr:proc_macro::TokenStream, item:proc_macro::TokenStream)->proc_macro::TokenStream{// Due to Rust constraints, procedural macros must be defined in the root of the crate.
// Therefore, we delegate the implementation to its interior `ktest` module.
macros::ktest::ktest(attr, item)}