Add --force flag for cancel and refund

This commit is contained in:
Daniel Karzel 2021-02-01 22:32:54 +11:00
parent 02f8eb7f18
commit c930ad84a4
8 changed files with 118 additions and 22 deletions

View file

@ -96,6 +96,9 @@ pub enum Cancel {
#[structopt(flatten)]
config: Config,
#[structopt(short, long)]
force: bool,
},
}
@ -114,6 +117,9 @@ pub enum Refund {
#[structopt(flatten)]
config: Config,
#[structopt(short, long)]
force: bool,
},
}