from fastapi import FastAPI\n\napp = FastAPI()\n\[email protected]("/")\ndef read_root():\n return {{"message": "Welcome to this fantastic app!"}} | |
from fastapi import FastAPI\n\napp = FastAPI()\n\[email protected]("/")\ndef read_root():\n return {{"message": "Welcome to this fantastic app!"}} | |