MusaedMusaedSadeqMusaedAl-Fareh225739
fixed app.py
4932989
raw
history blame contribute delete
233 Bytes
"""
Entry point for Hugging Face Spaces
"""
import uvicorn
# This imports the 'app' from your new modular folder structure
from mrrrme.backend.app import app
if __name__ == "__main__":
uvicorn.run(app, host="0.0.0.0", port=8000)