//! `run` subcommand
useabscissa_core::{Command, Runnable};useclap::Parser;/// Organizes your files according to your rules.
#[derive(Command, Debug, Parser)]pubstructRunCmd{/// working directory
#[clap(long)]pubworking_dir: String,
}implRunnable forRunCmd{/// Start the application.
fnrun(&self){todo!("run organization.")}}