15 lines
328 B
Python
15 lines
328 B
Python
|
|
"""
|
||
|
|
Service layer for Information Spaces.
|
||
|
|
|
||
|
|
This package provides the main orchestration service:
|
||
|
|
- SpaceService: Main API for space operations
|
||
|
|
- RenderService: Rendering orchestration (Phase 4)
|
||
|
|
- SyncService: Synchronization coordination (Phase 5)
|
||
|
|
"""
|
||
|
|
|
||
|
|
from .space_service import SpaceService
|
||
|
|
|
||
|
|
__all__ = [
|
||
|
|
"SpaceService",
|
||
|
|
]
|