g1a / modules /ui /views /__init__.py
AIdeaText's picture
Update modules/ui/views/__init__.py
5a5ae33 verified
raw
history blame
291 Bytes
# modules/ui/views/__init__.py
"""
Módulo de vistas de la interfaz
"""
from landing import create_landing_view
from login import create_login_view
from user_dashboard import create_dashboard_view
__all__ = [
'create_landing_view',
'create_login_view',
'create_dashboard_view'
]