# -*- coding: utf-8 -*- from fastapi import FastAPI app = FastAPI() @app.get("/") async def root(): return {"message": "Hello World"} if __name__ == "__main__": import uvicorn uvicorn.run(app="app:app", host="0.0.0.0", port=8000, reload=True, debug=False)