from fastapi import APIRouter from .screenshot import router as screenshot_router router = APIRouter() router.include_router(screenshot_router)