//! Stub showing how to construct an `ApiServer` from a bare `axum::Router`.
//!
//! Run with: `cargo run -p systemprompt --example api --features api`
//!
//! In a real deployment you would build the router via the runtime's
//! `AppContext` plumbing; this example focuses on the surface re-exported
//! through the facade.
use ApiServer;
use Router;
async