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} 10 11// re-export 12pub use soph_core::*;