1use std::sync::LazyLock; 2use tokio::runtime::Runtime; 3 4// A globally shared Tokio runtime for SDS 5pub static TOKIO_RUNTIME: LazyLock<Runtime> = 6 LazyLock::new(|| Runtime::new().expect("Failed to create Tokio runtime"));