russel 0.0.3

A simple static site builder I built for myself.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::commands::{build, dev, generate, new};
use clap::Command;

pub fn build_cli() -> Command {
    Command::new("russ")
        .version("0.0.1")
        .about("Let's build a static site")
        .arg_required_else_help(true)
        .subcommand(generate::subcommand())
        .subcommand(new::subcommand())
        .subcommand(dev::subcommand())
        .subcommand(build::subcommand())
}