main.py 122 B

123456
  1. if __name__ == "__main__":
  2. import uvicorn
  3. uvicorn.run(app='server:app', host="0.0.0.0", port=8000, reload=True)