apigate 1.0.0

Macro-driven API gateway for Rust: declarative routing, request transformation, and reverse proxying built on axum
Documentation
1
2
3
4
5
6
7
#[apigate::hook]
async fn hook(ctx: &apigate::PartsCtx<'_>) -> apigate::HookResult {
    let _ = ctx;
    Ok(())
}

fn main() {}