16 Zeilen
428 B
Python
16 Zeilen
428 B
Python
"""
|
|
Handler modules for MainWindow refactoring
|
|
Separates concerns and reduces God Class anti-pattern
|
|
"""
|
|
|
|
from .gitea_operations import GiteaOperationsHandler
|
|
from .process_manager import ProcessManagerHandler
|
|
from .project_manager import ProjectManagerHandler
|
|
from .ui_helpers import UIHelpersHandler
|
|
|
|
__all__ = [
|
|
'GiteaOperationsHandler',
|
|
'ProcessManagerHandler',
|
|
'ProjectManagerHandler',
|
|
'UIHelpersHandler'
|
|
] |