mirror of
https://github.com/SuperClaude-Org/SuperClaude_Framework.git
synced 2025-12-29 16:16:08 +00:00
refactor: move manager classes from core to managers module
* Move ConfigManager, SettingsManager, and FileManager from setup/core to setup/managers with new init.py for cleaner organization. * Update SettingsManager with enhanced metadata handling methods and installation detection utilities.
This commit is contained in:
9
setup/managers/__init__.py
Normal file
9
setup/managers/__init__.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from .config_manager import ConfigManager
|
||||
from .settings_manager import SettingsManager
|
||||
from .file_manager import FileManager
|
||||
|
||||
__all__ = [
|
||||
'ConfigManager',
|
||||
'SettingsManager',
|
||||
'FileManager'
|
||||
]
|
||||
Reference in New Issue
Block a user