russel 0.0.3

A simple static site builder I built for myself.
Documentation
1
2
3
4
5
6
7
8
//! Contains the build command definition
use clap::Command;

/// Defines the 'build' subcommand structure
pub fn subcommand() -> Command {
    Command::new("build")
        .about("Build the project")
}