russel 0.0.3

A simple static site builder I built for myself.
Documentation
1
2
3
4
5
6
7
8
9
//! Library crate for the application.

pub mod cli;
pub mod commands;
pub mod error;

// Re-export commonly used items for convenience
pub use cli::build_cli;
pub use error::{Result, RussError};