1//! Module-private singleton holding the PostHog ingestion client.
2//! Populated once by `Initialize::Fn`; every `Capture*::Fn` reads
3//! through this static.
45use std::sync::OnceLock;
67pub(crate) static CLIENT:OnceLock<posthog_rs::Client> = OnceLock::new();