mirror of
https://github.com/hyb-oyqq/FRAISEMOE-Addons-Installer-NEXT.git
synced 2025-12-17 12:30:27 +00:00
10 lines
275 B
Python
10 lines
275 B
Python
|
|
# Handlers package initialization
|
||
|
|
from .extraction_handler import ExtractionHandler
|
||
|
|
from .patch_toggle_handler import PatchToggleHandler
|
||
|
|
from .uninstall_handler import UninstallHandler
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
'ExtractionHandler',
|
||
|
|
'PatchToggleHandler',
|
||
|
|
'UninstallHandler',
|
||
|
|
]
|