1 2 3 4 5 6 7 8
//! Contains the build command handler use crate::{Result, commands::build::execute::execute}; use clap::ArgMatches; /// Handles the 'build' command pub fn handle_command(_sub_matches: &ArgMatches) -> Result<()> { execute() }