blob: a672b18be801871f9c02483316f653580c343097 (
plain)
1
2
3
4
5
6
7
8
9
10
11
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, _cli: &super::Cli) -> anyhow::Result<()> {
todo!()
}
|