Run the enhanced API server
(self, host: str = "127.0.0.1", port: int = 8000, debug: bool = False)
| 533 | return related |
| 534 | |
| 535 | def run(self, host: str = "127.0.0.1", port: int = 8000, debug: bool = False): |
| 536 | """Run the enhanced API server""" |
| 537 | uvicorn.run( |
| 538 | self.app, host=host, port=port, log_level="debug" if debug else "info" |
| 539 | ) |
| 540 | |
| 541 | |
| 542 | if __name__ == "__main__": |
no outgoing calls
no test coverage detected