| from fastapi import FastAPI | |
| app = FastAPI() | |
| async def root(): | |
| return {"message": "Hello World"} | |
| async def health(): | |
| return {"status": "healthy"} | |
| async def status(): | |
| return {"status": "running"} | |
| from fastapi import FastAPI | |
| app = FastAPI() | |
| async def root(): | |
| return {"message": "Hello World"} | |
| async def health(): | |
| return {"status": "healthy"} | |
| async def status(): | |
| return {"status": "running"} | |