1//! This module provides a simple wrapper 2//! around the `tokio::task` module. 3 4pub use tokio::task::{spawn_blocking, JoinHandle}; 5pub use tokio::{spawn, task::spawn_local};