1pub mod config; 2pub mod error; 3pub mod support; 4 5pub type RuntimeResult<T, E = error::Error> = Result<T, E>; 6 7pub struct Runtime { 8 inner: tokio::runtime::Runtime, 9 config: config::Runtime, 10} 11 12// re-export 13pub use ayun_core::*;