feat: create Ctx instance

This commit is contained in:
Paul Campbell 2024-11-29 14:31:40 +00:00
parent d0b6f9a1fc
commit c960129be2

View file

@ -1,10 +1,19 @@
// //
use std::path::PathBuf;
use color_eyre::Result; use color_eyre::Result;
use trello_to_deck::Ctx;
#[tokio::main] #[tokio::main]
#[cfg_attr(test, mutants::skip)] #[cfg_attr(test, mutants::skip)]
async fn main() -> Result<()> { async fn main() -> Result<()> {
color_eyre::install()?; color_eyre::install()?;
let _ctx = Ctx {
fs: kxio::fs::new(PathBuf::default()),
net: kxio::net::new(),
};
Ok(()) Ok(())
} }