feat: create Ctx instance
Some checks failed
Test / build (map[name:nightly]) (push) Successful in 2m30s
Test / build (map[name:stable]) (push) Successful in 9m6s
Release Please / Release-plz (push) Failing after 1m12s

This commit is contained in:
Paul Campbell 2024-11-29 14:31:40 +00:00
parent 111d9c2090
commit 8bcc6017ce

View file

@ -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(())
}