14 lines
391 B
Python
14 lines
391 B
Python
"""
|
|
EU-Utility Core UI Components
|
|
|
|
Built-in UI views that are part of the framework.
|
|
"""
|
|
|
|
from .settings_view import SettingsView
|
|
from .dashboard_view import DashboardView
|
|
from .search_view import UniversalSearchView
|
|
from .plugins_view import PluginsView
|
|
from .widgets_view import WidgetsView
|
|
|
|
__all__ = ['SettingsView', 'DashboardView', 'UniversalSearchView', 'PluginsView', 'WidgetsView']
|