diff options
Diffstat (limited to 'crates/mozart/src/commands/fund.rs')
| -rw-r--r-- | crates/mozart/src/commands/fund.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/crates/mozart/src/commands/fund.rs b/crates/mozart/src/commands/fund.rs index 19e4825..e8a42f5 100644 --- a/crates/mozart/src/commands/fund.rs +++ b/crates/mozart/src/commands/fund.rs @@ -23,7 +23,11 @@ struct FundingEntry { // ─── Main entry point ─────────────────────────────────────────────────────── -pub fn execute(args: &FundArgs, cli: &super::Cli) -> anyhow::Result<()> { +pub fn execute( + args: &FundArgs, + cli: &super::Cli, + _console: &crate::console::Console, +) -> anyhow::Result<()> { let working_dir = match &cli.working_dir { Some(dir) => PathBuf::from(dir), None => std::env::current_dir()?, |
