blob: bd82306b3081dd9ec6ebccce8c1e4d58c2c4c3d9 (
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) {
todo!()
}
|