trello-to-deck/src/main.rs
Paul Campbell a43b37c938
Some checks failed
Test / build (map[name:stable]) (push) Successful in 1m42s
Test / build (map[name:nightly]) (push) Successful in 2m13s
Release Please / Release-plz (push) Failing after 15s
feat(trello): add command 'trello attachement save'
2024-12-13 22:10:38 +00:00

10 lines
193 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::new(std::env::current_dir()?)).await
}