soph_runtime/support/
mod.rsuse crate::Runtime;
use std::sync::OnceLock;
mod runtime;
static RUNTIME: OnceLock<Runtime> = OnceLock::new();
pub fn runtime() -> &'static Runtime {
RUNTIME.get_or_init(|| Runtime::new().unwrap_or_else(|err| panic!("{err}")))
}