Add a command for cleaning up old targets.

This commit is contained in:
Tom Alexander
2026-09-03 21:46:10 -04:00
parent c994952ab3
commit 05ef6bfd39
7 changed files with 83 additions and 20 deletions

View File

@@ -9,6 +9,7 @@ use clap::Parser;
use self::cli::parameters::Cli;
use self::cli::parameters::Commands;
use self::command::build::run_build;
use self::command::clean::run_clean;
use self::command::daemon::start_daemon;
use self::command::feed_logs::feed_logs;
use self::error::CustomError;
@@ -38,6 +39,9 @@ async fn main_body() -> Result<ExitCode> {
Commands::Build(args) => {
run_build(args).await?;
}
Commands::Clean(args) => {
run_clean(args).await?;
}
Commands::Daemon(args) => {
start_daemon(args).await?;
}