use oomclient::ServerWrapper; use std::time::Duration; #[tokio::main] async fn main() -> Result<(), Box> { let agent = ServerWrapper::default().await?; println!("{:?}", agent.address()); tokio::time::sleep(Duration::from_secs(10)).await; Ok(()) }