11 lines
297 B
Python
11 lines
297 B
Python
|
|
"""
|
||
|
|
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"]
|