__main__.py 92 B

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