from fastapi import FastAPI from .blog import router as blog_router def register_routers(app: FastAPI): app.include_router(blog_router, prefix="")