confluence-cli 0.1.10

Markdown-sync-first Confluence CLI in Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod cli;
mod config;
mod markdown;
mod model;
mod output;
mod provider;
mod sync;

#[tokio::main]
async fn main() {
    if let Err(error) = cli::run().await {
        eprintln!("error: {error:#}");
        std::process::exit(1);
    }
}