g1a / modules /ui /views /__init__.py
AIdeaText's picture
Update modules/ui/views/__init__.py
3327c84 verified
raw
history blame
302 Bytes
# modules/ui/views/__init__.py
"""Módulo de vistas de la interfaz"""
from .landing_view import create_landing_view
from .login_view import create_login_view
from .dashboard_view import create_dashboard_view
__all__ = [
'create_landing_view',
'create_login_view',
'create_dashboard_view'
]