()
| 131 | |
| 132 | |
| 133 | def build_parser(): |
| 134 | parser = argparse.ArgumentParser(description=__doc__, formatter_class=argparse.RawTextHelpFormatter) |
| 135 | parser.add_argument("config_file", metavar="config_path", help="Path to configuration file") |
| 136 | parser.set_defaults(func=init_and_start) |
| 137 | return parser |
| 138 | |
| 139 | |
| 140 | if __name__ == "__main__": |
no outgoing calls
no test coverage detected