# app/modules/cms/routes/vendor.py """ CMS module vendor routes. Re-exports routes from the API routes for backwards compatibility with the lazy router attachment pattern. Includes: - /content-pages/* - Content page management - /media/* - Media library """ # Re-export vendor_router from API routes from app.modules.cms.routes.api.vendor import vendor_router __all__ = ["vendor_router"]