14 lines
390 B
Python
14 lines
390 B
Python
|
|
"""
|
||
|
|
Git history tracking for Information Spaces (Optional Phase 8).
|
||
|
|
|
||
|
|
This package provides version control integration:
|
||
|
|
- IHistoryBackend: Abstract history backend interface
|
||
|
|
- GitHistoryBackend: Git implementation
|
||
|
|
- Event-driven commit triggers
|
||
|
|
- History query API (log, diff, branches)
|
||
|
|
- Versioned read/render operations
|
||
|
|
"""
|
||
|
|
|
||
|
|
# History tracking will be implemented in Phase 8
|
||
|
|
__all__ = []
|