pub mod agent; pub mod connections; pub mod env; use std::future::Future; fn run_async(fut: impl Future) -> R { futures::executor::block_on(fut) }