//! `sim` subcommand
useabscissa_core::{Command, Runnable};useclap::Parser;/// Simulates a run (does not touch your files).
#[derive(Command, Debug, Parser)]pubstructSimCmd{/// working directory
#[clap(long)]pubworking_dir: String,
}implRunnable forSimCmd{/// Start the application.
fnrun(&self){todo!("simulate an organize run.")}}