10 lines
193 B
Rust
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
|
|
}
|