//! `docspec http` subcommand: run the HTTP API server.
//!
//! Thin wrapper around [`docspec_http::run_server`]. The caller (`main.rs`) is
//! responsible for initializing telemetry BEFORE invoking this function and holding the
//! returned `TelemetryGuard` for the rest of the process lifetime.
use crateHttpArgs;
use crate;
use ;
/// Execute the `http` subcommand. Delegates to [`docspec_http::run_server`].
///
/// # Lifetime requirement
///
/// The caller (`main.rs`) MUST hold the `TelemetryGuard` returned by
/// `docspec_http::init_telemetry()` until this function returns.