21 lines
470 B
Python
21 lines
470 B
Python
|
|
from .actions import actions_bp
|
||
|
|
from .analyse import analyse_bp
|
||
|
|
from .auth import auth_bp
|
||
|
|
from .comptes import comptes_bp
|
||
|
|
from .historique import historique_bp
|
||
|
|
from .menu import menu_bp
|
||
|
|
from .ordres import ordres_bp
|
||
|
|
from .societes import societes_bp
|
||
|
|
from .utilisateurs import utilisateurs_bp
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"auth_bp",
|
||
|
|
"menu_bp",
|
||
|
|
"utilisateurs_bp",
|
||
|
|
"actions_bp",
|
||
|
|
"societes_bp",
|
||
|
|
"historique_bp",
|
||
|
|
"analyse_bp",
|
||
|
|
"ordres_bp",
|
||
|
|
"comptes_bp",
|
||
|
|
]
|