trello-to-deck/src/main.rs
Paul Campbell 5b0805e4f9
Some checks failed
Test / build (map[name:stable]) (push) Successful in 2m37s
Test / build (map[name:nightly]) (push) Successful in 2m19s
Release Please / Release-plz (push) Failing after 15s
feat: add kxio printer to context
2024-12-13 09:30:16 +00:00

10 lines
173 B
Rust

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