Arcature application framework: a high-level Application facade over the certified Arcature subsystems, with the low-level Axum/Tower escape hatch preserved.
usesuper::App;useaxum::Router;impl<S>App<S>{/// Bring a raw [`axum::Router`] into Arcature.
////// This is one side of the Axum escape hatch (the other being
/// [`App::into_router`]). It lets a developer construct and configure an
/// Axum router directly with the full upstream ecosystem, then move it
/// into Arcature for serving. The state type `S` is preserved as-is.
pubfnfrom_router(router:Router<S>)->Self{
App { router }}}