markitect-main/markitect/spaces/services/__init__.py

15 lines
328 B
Python
Raw Normal View History

"""
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",
]