g1a / modules /ui /views /__init__.py
AIdeaText's picture
Update modules/ui/views/__init__.py
d9f4f1f verified
raw
history blame
292 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'
]