AIdeaText commited on
Commit
1a50b6c
verified
1 Parent(s): 4d280bf

Update modules/ui/views/__init__.py

Browse files
Files changed (1) hide show
  1. modules/ui/views/__init__.py +13 -0
modules/ui/views/__init__.py CHANGED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # modules/ui/views/__init__.py
2
+ """
3
+ M贸dulo de vistas de la interfaz
4
+ """
5
+ from .landing import create_landing_view
6
+ from .login import create_login_view
7
+ from .user_dashboard import create_dashboard_view
8
+
9
+ __all__ = [
10
+ 'create_landing_view',
11
+ 'create_login_view',
12
+ 'create_dashboard_view'
13
+ ]