trello-to-deck/src/main.rs

17 lines
278 B
Rust
Raw Normal View History

2024-11-29 14:15:32 +00:00
//
2024-11-29 14:31:40 +00:00
use std::path::PathBuf;
2024-11-29 14:31:40 +00:00
use color_eyre::Result;
2024-11-29 14:15:32 +00:00
2024-11-29 14:31:40 +00:00
use trello_to_deck::{run, Ctx};
2024-11-29 14:31:40 +00:00
2024-11-29 14:31:40 +00:00
#[tokio::main]
2024-11-29 14:15:32 +00:00
#[cfg_attr(test, mutants::skip)]
2024-11-29 14:31:40 +00:00
async fn main() -> Result<()> {
2024-11-29 14:31:40 +00:00
run(Ctx {
2024-11-29 14:31:40 +00:00
fs: kxio::fs::new(PathBuf::default()),
net: kxio::net::new(),
2024-11-29 14:31:40 +00:00
})
.await
2024-11-29 13:50:34 +00:00
}