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