diff options
Diffstat (limited to 'src/commands/fund.rs')
| -rw-r--r-- | src/commands/fund.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/commands/fund.rs b/src/commands/fund.rs new file mode 100644 index 0000000..bd82306 --- /dev/null +++ b/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!() +} |
