12 lines
271 B
Rust
12 lines
271 B
Rust
//
|
|
use clap::Parser;
|
|
use color_eyre::Result;
|
|
|
|
use trello_to_deck::{run, Commands, Ctx};
|
|
|
|
#[tokio::main]
|
|
#[cfg_attr(test, mutants::skip)]
|
|
async fn main() -> Result<()> {
|
|
color_eyre::install()?;
|
|
run(&Ctx::from(std::env::current_dir()?), &Commands::parse()).await
|
|
}
|