18 lines
500 B
Python
18 lines
500 B
Python
"""
|
|
Dialogues GUI pour RPA Vision V2
|
|
Contient les dialogues de correction, notifications post-action, alertes de transition
|
|
et le tableau de bord résumé
|
|
"""
|
|
|
|
from .correction_dialog import CorrectionDialog
|
|
from .post_action_notification import PostActionNotification
|
|
from .transition_notification import TransitionNotification
|
|
from .summary_dashboard import SummaryDashboard
|
|
|
|
__all__ = [
|
|
'CorrectionDialog',
|
|
'PostActionNotification',
|
|
'TransitionNotification',
|
|
'SummaryDashboard',
|
|
]
|