feat: implement app remove

See coop-cloud/go-abra#43.
This commit is contained in:
2021-08-05 12:02:13 +02:00
committed by decentral1se
parent 8554e68418
commit 6732edf8db
2 changed files with 128 additions and 2 deletions

View File

@ -42,3 +42,12 @@ var ContextFlag = &cli.StringFlag{
Aliases: []string{"c"},
Destination: &Context,
}
var Force bool
var ForceFlag = &cli.BoolFlag{
Name: "force",
Value: false,
Aliases: []string{"f"},
Destination: &Force,
}