//! Application bootstrap and server runner: wires an Axum router, applies a standard
//! middleware stack, handles graceful shutdown, and listens for HTTP traffic.
//!
//! See [`BootstrapConfig`] for startup settings, the [`get`]/[`post`]/[`put`]/[`delete`]/
//! [`patch`] macros and [`routes`] module for auto-registering handlers, and [`run`] for the
//! server entry point.
/// [`BootstrapConfig`] and related environment-variable helpers.
/// OTLP-based tracing, metrics, and log export, wired automatically into [`run`].
/// [`run`], the server entry point.
/// Re-exported so crates that only depend on `stano-launcher` can still resolve
/// `stano-axum`'s routing/inventory machinery through the `#[get]`/`#[post]`/etc. macros.
pub extern crate stano_axum;
/// Re-exported so a consumer implementing `run()`'s `register_metrics` callback can name
/// `prometheus::Registry`/`Gauge`/`IntCounter`/etc. without adding its own `prometheus`
/// dependency (and risking a version mismatch with the one `run()` actually uses).
pub extern crate prometheus;
/// Auto-registration of `#[get]`/`#[post]`/`#[put]`/`#[delete]`/`#[patch]`-annotated
/// handlers, consumed by [`run`]. Defined in `stano-axum` so adapter crates that only write
/// routes never need to depend on `stano-launcher` itself.
pub use routes;
pub use ;
pub use ;
pub use run;
pub use ;