//! Prometheus metrics for the SFU.
//!
//! One [`SfuMetrics`] per process, wrapped in [`Arc`][std::sync::Arc] and
//! threaded through constructors (no global statics).
//!
//! When the `metrics-prometheus` feature is **off**, all methods on
//! `SfuMetrics` are no-ops and the struct holds no Prometheus handles.
//! This lets `Client` and `Registry` always hold an `Arc<SfuMetrics>` with
//! no conditional compilation at call sites.
//!
//! Submodules:
//! - prom — full Prometheus implementation (feature `metrics-prometheus`)
//! - noop — zero-cost stub (feature off)
pub use SfuMetrics;
pub use SfuMetrics;