macro_rules! controller_dispatch {
($self:expr, $method_name:expr, $request:expr, {
$($method:literal => $handler:expr),*
}) => { ... };
}
Expand description
Macro to help implement controller method dispatch
Updated to work with Arc
macro_rules! controller_dispatch {
($self:expr, $method_name:expr, $request:expr, {
$($method:literal => $handler:expr),*
}) => { ... };
}
Macro to help implement controller method dispatch
Updated to work with Arc