russel 0.0.2

A simple static site builder I built for myself.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Implementation for the 'new' command
pub mod command;
pub mod create;
pub mod execute;
pub mod handler;
pub mod utils;

pub use command::subcommand;
pub use execute::execute;
pub use handler::{NewArgs, handle_command};