ae4503145a
- Introduced validation utilities in src/thechart/validation with InputValidator class for various data types. - Migrated theme management to thechart.ui.theme_manager, providing a legacy shim for backward compatibility. - Updated tooltip system to thechart.ui.tooltip_system, maintaining legacy imports. - Created compatibility shim for undo utilities, redirecting to thechart.core.undo_manager. - Ensured all new modules are properly documented and maintain existing functionality.
14 lines
301 B
Python
14 lines
301 B
Python
"""Compatibility shim re-exporting auto-save utilities.
|
|
|
|
Canonical implementation lives in `thechart.core.auto_save`.
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from thechart.core.auto_save import ( # noqa: F401
|
|
AutoSaveManager,
|
|
BackupManager,
|
|
)
|
|
|
|
__all__ = ["AutoSaveManager", "BackupManager"]
|