mod processor; mod transport; pub use transport::ExecServerTransport; pub use transport::ExecServerTransportParseError; pub async fn run_main() -> Result<(), Box> { run_main_with_transport(ExecServerTransport::Stdio).await } pub async fn run_main_with_transport( transport: ExecServerTransport, ) -> Result<(), Box> { transport::run_transport(transport).await }