(subparsers)
| 659 | |
| 660 | |
| 661 | def initialize_activate_subcommand(subparsers): |
| 662 | sub_parser = subparsers.add_parser( |
| 663 | "activate", help="Activates the specified topology's spouts.", formatter_class=SortingHelpFormatter |
| 664 | ) |
| 665 | |
| 666 | sub_parser.add_argument("topology-name") |
| 667 | |
| 668 | sub_parser.set_defaults(func=activate) |
| 669 | add_common_options(sub_parser) |
| 670 | |
| 671 | |
| 672 | def initialize_listtopos_subcommand(subparsers): |
no test coverage detected