mirror of
https://github.com/Omni-guides/Jackify.git
synced 2026-08-14 01:23:46 +02:00
11 lines
310 B
Python
11 lines
310 B
Python
"""
|
|
GUI Dialogs Package
|
|
|
|
Custom dialogs for the Jackify GUI application.
|
|
"""
|
|
|
|
from .completion_dialog import NextStepsDialog
|
|
from .success_dialog import SuccessDialog
|
|
from .verification_results_dialog import VerificationResultsDialog
|
|
|
|
__all__ = ['NextStepsDialog', 'SuccessDialog', 'VerificationResultsDialog'] |