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