# app/services/content_page_service.py """ DEPRECATED: This module has moved to app.modules.cms.services.content_page_service Please update your imports: # Old (deprecated): from app.services.content_page_service import content_page_service # New (preferred): from app.modules.cms.services import content_page_service This shim re-exports from the new location for backwards compatibility. """ import warnings warnings.warn( "Import from app.modules.cms.services.content_page_service instead of " "app.services.content_page_service. This shim will be removed in a future version.", DeprecationWarning, stacklevel=2, ) # Re-export everything from the new location from app.modules.cms.services.content_page_service import ( # noqa: E402, F401 ContentPageService, content_page_service, ) __all__ = ["ContentPageService", "content_page_service"]