(port=8000, bind='127.0.0.1', catalog_dir='', log_level=logging.INFO)
| 158 | |
| 159 | |
| 160 | def run(port=8000, bind='127.0.0.1', catalog_dir='', log_level=logging.INFO): |
| 161 | logging.basicConfig(level=log_level) |
| 162 | UpdateHttpServer(port, bind, catalog_dir) |
| 163 | |
| 164 | |
| 165 | if __name__ == "__main__": |
no test coverage detected