""" Admin Panel Component - Legacy Compatibility Wrapper This file provides backward compatibility for code importing from admin_panel.py. All functionality has been moved to the admin_panel/ module. For new code, import directly from: from frontend.components.admin_panel import get_admin_panel_css from frontend.components.admin_panel import get_admin_panel_html from frontend.components.admin_panel import get_admin_panel_js """ # Re-export all public APIs from the modular structure from .admin_panel import ( get_admin_panel_css, get_admin_panel_html, get_admin_panel_js, ) __all__ = [ "get_admin_panel_css", "get_admin_panel_html", "get_admin_panel_js", ]