from fastapi import APIRouter router = APIRouter() @router.get("/") async def image_root(): return {"message": "Image route active"}