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