Proc_macro_attribute dependencies

#[controller]
impl MyController {
   
   #[get]
   fn home() {}
}

In this scenario the controller proc_macro_attribute depends on the inner ones because it needs to know which functions are "marked" as get. But because the execution order of the proc_macro_attributes is not defined, I ask if there is any other way of doing this with some magic in the get proc_macro_attribute. I know that I could simply define the controller proc_macro_attribute with parameters but that would be a lot of duplicate naming.

This topic was automatically closed 90 days after the last reply. We invite you to open a new topic if you have further questions or comments.