(subparsers)
| 1017 | |
| 1018 | |
| 1019 | def initialize_classpath_subcommand(subparsers): |
| 1020 | command_help = """Prints the classpath used by the storm client when running commands.""" |
| 1021 | sub_parser = subparsers.add_parser("classpath", help=command_help, formatter_class=SortingHelpFormatter) |
| 1022 | sub_parser.set_defaults(func=print_classpath) |
| 1023 | add_common_options(sub_parser) |
| 1024 | |
| 1025 | |
| 1026 | def initialize_server_classpath_subcommand(subparsers): |
no test coverage detected