Coverage for src / moai_adk / core / migration / __init__.py: 100.00%

5 statements  

« prev     ^ index     » next       coverage.py v7.12.0, created at 2025-11-20 20:52 +0900

1""" 

2Migration module for MoAI-ADK version upgrades 

3 

4Handles automatic migration of configuration files and project structure 

5when upgrading between versions. 

6""" 

7 

8from .backup_manager import BackupManager 

9from .file_migrator import FileMigrator 

10from .version_detector import VersionDetector 

11from .version_migrator import VersionMigrator 

12 

13__all__ = [ 

14 "VersionMigrator", 

15 "VersionDetector", 

16 "BackupManager", 

17 "FileMigrator", 

18]