# app/modules/cms/routes/store.py """ CMS module store 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 store_router from API routes from app.modules.cms.routes.api.store import store_router __all__ = ["store_router"]