from fastapi import FastAPI app = FastAPI() @app.get('/hello') def hello(): return {"hello": "succesfully deployed"}