1
2
3
4
5
6
7
8
9
10
11
12
//! Runtime module.
//!
//! Only supports tokio runtime in current version.
//! More runtimes will be supported in the future.

#[doc(hidden)]
pub use hyper::rt::*;

/// Tokio runtimes
pub mod tokio {
    pub use hyper_util::rt::{TokioExecutor, TokioIo};
}