aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/mozart/src/commands/fund.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/mozart/src/commands/fund.rs')
-rw-r--r--crates/mozart/src/commands/fund.rs12
1 files changed, 12 insertions, 0 deletions
diff --git a/crates/mozart/src/commands/fund.rs b/crates/mozart/src/commands/fund.rs
new file mode 100644
index 0000000..bd82306
--- /dev/null
+++ b/crates/mozart/src/commands/fund.rs
@@ -0,0 +1,12 @@
+use clap::Args;
+
+#[derive(Args)]
+pub struct FundArgs {
+ /// Output format (text, json)
+ #[arg(short, long)]
+ pub format: Option<String>,
+}
+
+pub fn execute(_args: &FundArgs) {
+ todo!()
+}