trello-to-deck/src/main.rs
Paul Campbell 8bcc6017ce
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
feat: create Ctx instance
2024-12-12 17:31:31 +00:00

19 lines
308 B
Rust

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