use axum_controller::controller;
use axum_typed_routing::route;
use axum_typed_routing::TypedRouter;
struct ExampleController;
#[controller(this is not valid attr syntax ===)]
impl ExampleController {
#[route(GET "/test")]
async fn test_handler_fn() -> String {
todo!()
}
}
fn main() {}