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