12 lines
285 B
Python
12 lines
285 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
|
|
|
|
__all__ = ['SettingsView', 'DashboardView', 'UniversalSearchView']
|