doniramdani810's picture
Add GeeTest4 Solver API with Pure FastAPI
01ed544
raw
history blame contribute delete
426 Bytes
#!/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"
)