hermes_runtime/impls/runtime/
tokio.rs1use hermes_tokio_runtime_components::traits::runtime::HasTokioRuntime;
2use tokio::runtime::Runtime;
3
4use crate::types::runtime::HermesRuntime;
5
6impl HasTokioRuntime for HermesRuntime {
7 fn tokio_runtime(&self) -> &Runtime {
8 &self.runtime
9 }
10}