feat(timesheet): make hour-output default, decimal with two decimals

This commit is contained in:
Konstantin Fickel 2026-04-07 09:56:46 +02:00
parent 7f4d3bb147
commit 22ada87de6
Signed by: kfickel
GPG key ID: A793722F9933C1A5
3 changed files with 69 additions and 52 deletions

View file

@ -15,8 +15,8 @@ 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, debug }) => {
streamd::cli::commands::timesheet::run(minutes, debug)?
Some(Commands::Timesheet { decimal, debug }) => {
streamd::cli::commands::timesheet::run(decimal, debug)?
}
Some(Commands::Completions { shell }) => {
streamd::cli::commands::completions::run(shell);