rtk_lua_macros/
lib.rs

1use proc_macro::TokenStream;
2
3/// Dummy proc macro that does nothing and relays the item it sits on top of back out. This is used
4/// to specify marker overrides that are used when dogfooding the lua api
5#[proc_macro_derive(RtkMeta, attributes(rtk_meta))]
6pub fn rtk_meta(_attrs: TokenStream) -> TokenStream {
7    TokenStream::new()
8}