#[epilogue_hooks]
Expand description
Injects a list of macros after the decorated function.
The macros are applied in tail-insertion order, meaning the last macro in the list is the outermost macro.
ยงUsage
use hyperlane::*;
use hyperlane_macros::*;
#[epilogue_hooks(post, send)]
async fn handler(ctx: Context) {
// ...
}