Skip to content

Commit

Permalink
refactor: 🔨 test
Browse files Browse the repository at this point in the history
Make clippy happy
  • Loading branch information
AntwortEinesLebens committed Oct 27, 2024
1 parent d5f5982 commit 3d86219
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ fn banner() {
fn main() -> Result<(), Box<dyn Error>> {
banner();

Ok(match Arguments::parse().command {
match Arguments::parse().command {
Commands::Actions(action) => action.run()?,
})
};

Ok(())
}

0 comments on commit 3d86219

Please sign in to comment.