File size: 426 Bytes
01ed544 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | #!/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"
)
|