From 8bcc6017ce0bd4024e294cc5491e710bbd5853a0 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Fri, 29 Nov 2024 14:31:40 +0000 Subject: [PATCH] feat: create Ctx instance --- src/main.rs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/main.rs b/src/main.rs index 5a75fec..703e44e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,10 +1,19 @@ // +use std::path::PathBuf; + use color_eyre::Result; +use trello_to_deck::Ctx; + #[tokio::main] #[cfg_attr(test, mutants::skip)] async fn main() -> Result<()> { color_eyre::install()?; + let _ctx = Ctx { + fs: kxio::fs::new(PathBuf::default()), + net: kxio::net::new(), + }; + Ok(()) }