"""Back-compat entry point. The project has been refactored to separate API and crawler logic. This file now just delegates to the modular runner to keep Docker and existing commands unchanged. """ from app.runner import start if __name__ == "__main__": start()