debug.py 85 B

1234
  1. import uvicorn
  2. from app.main import app
  3. uvicorn.run(app, host="0.0.0.0", port=8000)