| 164 | /// This is the top-level command that dispatches to subcommands. |
| 165 | #[derive(Debug, clap::Args)] |
| 166 | pub struct Tag { |
| 167 | #[command(subcommand)] |
| 168 | pub command: TagCommands, |
| 169 | } |
| 170 | |
| 171 | impl Command for Tag { |
| 172 | fn run(&self) -> CliResult<()> { |
no outgoing calls