//! Shared Tokio runtime for every .NET binding entry point.
//!
//! Initialised on first call; the same runtime is reused by every
//! `TcpClientHandle` so we never spin up redundant OS threads.
use OnceLock;
use Runtime;
static TOKIO_RT: = new;
/// Returns a reference to the module-wide Tokio runtime.