pub use PrometheusHandle;
/// Installs the global Prometheus metrics recorder and returns a render handle.
///
/// Call once at process startup, before any `metrics::counter!` / `metrics::gauge!`
/// / `metrics::histogram!` macro is invoked. The returned handle is used by the
/// `/metrics` HTTP handler to serialise the current registry state.
///
/// Args:
/// * (none)
///
/// Usage:
/// ```ignore
/// let handle = auths_telemetry::init_prometheus();
/// ```
// INVARIANT: Prometheus recorder installation is a one-time global operation; failure is fatal