//! OpenTelemetry tracing configuration.
//!
//! When enabled in config.toml `[otel]`, exports spans via OTLP/gRPC.
//! When disabled (default), this module is a no-op.
use Result;
use OtelConfig;
/// Initialize OTel tracing layer.
///
/// Currently a no-op stub. See module documentation for enabling real OTel.
pub async
/// OTel shutdown guard. No-op when OTel is disabled.
;