Spaces:
Runtime error
Runtime error
File size: 176 Bytes
1914b78 | 1 2 3 4 5 6 7 8 9 10 | from src.main import app
if __name__=="__main__":
print("Starting server...") # 👈 add this
import uvicorn
uvicorn.run(app , host="0.0.0.0" , port=8000)
|