from fastapi import APIRouter from app.api import api_test from app.api import api_super_resolution router = APIRouter() router.include_router(api_test.router, tags=["test"], prefix="/test") router.include_router(api_super_resolution.router, tags=["api_super_resolution"], prefix="/api")