usestd::sync::OnceLock;usetokio::runtime::Runtime;/// Tokio runtime, use this if you want to use async code inside bevy systems
pubfntokio_runtime()->&'static Runtime{staticRUNTIME:OnceLock<Runtime>=OnceLock::new();RUNTIME.get_or_init(||Runtime::new().expect("Setting up tokio runtime needs to succeed."))}