(&self)
| 116 | |
| 117 | impl Command for TeamMemberCmd { |
| 118 | fn run(&self) -> CliResult<()> { |
| 119 | match &self.command { |
| 120 | TeamMemberCommands::List(cmd) => cmd.run(), |
| 121 | TeamMemberCommands::Add(cmd) => cmd.run(), |
| 122 | TeamMemberCommands::Update(cmd) => cmd.run(), |
| 123 | TeamMemberCommands::Remove(cmd) => cmd.run(), |
| 124 | } |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | // --------------------------------------------------------------------------- |