feat: add timesheet debug

This commit is contained in:
Konstantin Fickel 2026-04-07 08:42:14 +02:00
parent d614d678af
commit 0533c7777a
Signed by: kfickel
GPG key ID: A793722F9933C1A5
3 changed files with 79 additions and 10 deletions

View file

@ -15,7 +15,9 @@ fn main() -> miette::Result<()> {
Some(TodoAction::Done { number }) => streamd::cli::commands::todo::run_done(number)?,
},
Some(Commands::Edit { number }) => streamd::cli::commands::edit::run(number)?,
Some(Commands::Timesheet { minutes }) => streamd::cli::commands::timesheet::run(minutes)?,
Some(Commands::Timesheet { minutes, debug }) => {
streamd::cli::commands::timesheet::run(minutes, debug)?
}
Some(Commands::Completions { shell }) => {
streamd::cli::commands::completions::run(shell);
}