1//! The async runtime for ntex.
23#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
4// #![warn(missing_docs)]
56pub mod driver;
7pub mod pool;
8mod rt;
910pub use async_task::Task;
11pub use rt::{spawn, spawn_blocking, Handle, JoinHandle, Runtime, RuntimeBuilder};