()
| 44 | |
| 45 | |
| 46 | def _register_cli_opts(): |
| 47 | cli_opts = [ |
| 48 | cfg.StrOpt( |
| 49 | "schema-path", |
| 50 | default=None, |
| 51 | required=True, |
| 52 | help="Path to the config schema to use for validation.", |
| 53 | ), |
| 54 | cfg.StrOpt( |
| 55 | "config-path", |
| 56 | default=None, |
| 57 | required=True, |
| 58 | help="Path to the config file to validate.", |
| 59 | ), |
| 60 | ] |
| 61 | |
| 62 | do_register_cli_opts(cli_opts) |
| 63 | |
| 64 | |
| 65 | def main(): |
no test coverage detected