russel 0.0.2

A simple static site builder I built for myself.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Contains the new command definition
use clap::{Command, Arg};

/// Defines the 'new' subcommand structure
pub fn subcommand() -> Command {
    Command::new("new")
        .about("Create a new project")
        .arg(
            Arg::new("name")
                .help("The name of the new project")
                .required(true)
                .index(1)
        )
}