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