zahuyach 0.5.6

Static site generator for blogs written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use clap::Parser;
use std::process;
use zahuyach::cli::Cli;

fn main() {
    let cli = Cli::parse();

    match cli.run() {
        Ok(message) => {
            println!("{}", message);
        }
        Err(error) => {
            eprintln!("{}", error);
            self::process::exit(1);
        }
    }
}