1 2 3 4 5 6 7 8 9 10 11
//! runtime module. //! //! Only supports tokio runtime in current version. //! More runtimes will be supported in the future. pub use hyper::rt::*; /// Tokio runtimes pub mod tokio { pub use salvo_utils::rt::{TokioExecutor, TokioIo}; }