| 44 | #[derive(Parser, Debug, Default)] |
| 45 | #[command(name = "delete")] |
| 46 | pub struct Delete { |
| 47 | /// Name of the tag to delete. |
| 48 | #[arg(value_name = "NAME")] |
| 49 | pub name: Option<String>, |
| 50 | } |
| 51 | |
| 52 | impl Delete { |
| 53 | /// Create a new Delete command targeting the given tag. |