PYTHON
sync🐍python
"""
File Sync Tool - Synchronize local files to cloud storage.
"""
from .config import settings
from .sync_manager import SyncManager
from .watcher import FileWatcher
from .state import SyncState
__version__ = "1.0.0"
__all__ = ["SyncManager", "FileWatcher", "SyncState", "settings"]