(subcommand: &ExtensionSubCommand, progress_format: ProgressFormat)
| 530 | } |
| 531 | |
| 532 | pub fn extension(subcommand: &ExtensionSubCommand, progress_format: ProgressFormat) { |
| 533 | let mut dsc = DscManager::new(); |
| 534 | |
| 535 | match subcommand { |
| 536 | ExtensionSubCommand::List{extension_name, output_format} => { |
| 537 | list_extensions(&mut dsc, extension_name, output_format.as_ref(), progress_format); |
| 538 | }, |
| 539 | } |
| 540 | } |
| 541 | |
| 542 | pub fn function(subcommand: &FunctionSubCommand) { |
| 543 | let functions = FunctionDispatcher::new(); |
no test coverage detected