Refactor code structure and remove redundant changes

This commit is contained in:
catlog22
2026-01-24 14:47:47 +08:00
parent cf5fecd66d
commit f2b0a5bbc9
113 changed files with 43217 additions and 235 deletions

View File

@@ -0,0 +1,17 @@
"""File watcher module for real-time index updates."""
from .events import ChangeType, FileEvent, IndexResult, WatcherConfig, WatcherStats
from .file_watcher import FileWatcher
from .incremental_indexer import IncrementalIndexer
from .manager import WatcherManager
__all__ = [
"ChangeType",
"FileEvent",
"IndexResult",
"WatcherConfig",
"WatcherStats",
"FileWatcher",
"IncrementalIndexer",
"WatcherManager",
]