// mod kxio; fn main() -> Result<(), Box> { println!("Hello, world!"); let rt = tokio::runtime::Runtime::new()?; Ok(rt.block_on(crate::kxio::main())?) } #[cfg(test)] mod tests { #[test] fn passes() { println!("passes okay"); } }