printwell-cli 0.1.11

Command-line tool for HTML to PDF conversion
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! printwell - HTML to PDF conversion tool
//!
//! This binary is for development/testing without Chromium.
//! The production build uses the staticlib linked by ninja.

mod cli;

fn main() {
    let args: Vec<String> = std::env::args().collect();
    if let Err(e) = cli::run(args) {
        eprintln!("Error: {e:?}");
        std::process::exit(1);
    }
}