1// runtime-tokio 2pub type Arc<T> = std::sync::Arc<T>; 3 4pub type Mutex<T> = tokio::sync::Mutex<T>; 5 6pub use tokio::task::yield_now;