#!/usr/bin/env python3 """ GeeTest4 Solver - App Entry Point Simple entry point for Hugging Face Spaces compatibility """ # Import and run the main application from main import app if __name__ == "__main__": import uvicorn import os print("🚀 Starting GeeTest4 Solver API...") uvicorn.run( app, host="0.0.0.0", port=int(os.getenv("PORT", 7860)), log_level="info" )