1#![allow(non_snake_case)]
23//! Module-private singleton holding the PostHog ingestion client.
4//! Populated once by `Initialize::Fn`; every `Capture*::Fn` reads
5//! through this static.
67use std::sync::OnceLock;
89pub(crate) static CLIENT:OnceLock<posthog_rs::Client> = OnceLock::new();