1 2 3 4 5 6 7
use execution_engine::start; #[tokio::main] async fn main() -> Result<(), std::io::Error> { start().await?; Ok(()) }