//! Prometheus exporter placeholder.
//!
//! This module ships a minimal stub so the /metrics route exists even before
//! real instrumentation is wired up.
use ;
/// Official path for the stub exporter.
pub const PROMETHEUS_METRICS_PATH: &str = "/metrics";
const METRICS_PAYLOAD: &str = "";
/// Returns a thin Prometheus exposition so the route can be scraped.
pub async