diff options
Diffstat (limited to 'crates/mozart/src/commands/audit.rs')
| -rw-r--r-- | crates/mozart/src/commands/audit.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/crates/mozart/src/commands/audit.rs b/crates/mozart/src/commands/audit.rs index 3791157..3e69bb3 100644 --- a/crates/mozart/src/commands/audit.rs +++ b/crates/mozart/src/commands/audit.rs @@ -70,7 +70,11 @@ struct AuditResult { // ─── Main entry point ───────────────────────────────────────────────────────── -pub fn execute(args: &AuditArgs, cli: &super::Cli) -> anyhow::Result<()> { +pub fn execute( + args: &AuditArgs, + cli: &super::Cli, + _console: &crate::console::Console, +) -> anyhow::Result<()> { // Validate format let format = args.format.as_str(); if format != "table" && format != "plain" && format != "json" && format != "summary" { |
