russel 0.0.1

A simple static site builder I built for myself.
Documentation
1
2
3
4
5
6
7
8
//! Contains the dev command handler
use crate::{Result, commands::dev::execute::execute};
use clap::ArgMatches;

/// Handles the 'dev' command
pub async fn handle_command(_sub_matches: &ArgMatches) -> Result<()> {
    execute().await
}