// use std::path::PathBuf; use color_eyre::Result; use trello_to_deck::{run, Ctx}; #[tokio::main] #[cfg_attr(test, mutants::skip)] async fn main() -> Result<()> { run(Ctx { fs: kxio::fs::new(PathBuf::default()), net: kxio::net::new(), }) .await }