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

11 lines
297 B
Python
Raw Normal View History

"""
Service layer for Prompt Dependency Resolution.
This package provides high-level business logic for artifact and template
management, orchestrating repositories and domain operations.
"""
from markitect.prompts.services.artifact_service import ArtifactService
__all__ = ["ArtifactService"]