1
2
3
4
5
6
use proc_macro::TokenStream;

#[proc_macro_attribute]
pub fn event(_attr: TokenStream, item: TokenStream) -> TokenStream {
    item
}