bckt 0.6.2

bckt is an opinionated but flexible static site generator for blogs
mod cli;
mod commands;
pub mod config;
pub mod content;
pub mod markdown;
pub mod render;
pub mod search;
pub mod template;
pub mod theme;
pub mod utils;

fn main() {
    let app = cli::Cli::build();
    let outcome = commands::run(app.command);

    if let Err(problem) = outcome {
        eprintln!("{problem}");
        std::process::exit(1);
    }
}