14 lines
355 B
Python
14 lines
355 B
Python
|
|
"""
|
||
|
|
Directory synchronization for Information Spaces.
|
||
|
|
|
||
|
|
This package provides filesystem integration:
|
||
|
|
- SpaceToDirectory exporter using VariantFactory
|
||
|
|
- DirectoryToSpace importer
|
||
|
|
- Bidirectional sync coordinator
|
||
|
|
- Filesystem watcher for external changes
|
||
|
|
- Conflict detection and resolution
|
||
|
|
"""
|
||
|
|
|
||
|
|
# Directory sync will be implemented in Phase 5
|
||
|
|
__all__ = []
|