()
| 133 | httpd = HTTPServer((host, port), InteractionHandler) |
| 134 | httpd.interaction_server = interaction_server |
| 135 | def serve(): |
| 136 | print(f"Starting server on {host}:{port}") |
| 137 | httpd.serve_forever() |
| 138 | |
| 139 | server_thread = threading.Thread(target=serve, daemon=True) |
| 140 | server_thread.start() |
nothing calls this directly
no outgoing calls
no test coverage detected