Files
visual-semiotic-ai-analysis/data_store/interfaces/__init__.py
T
Brian Bjarke Jensen 0ba860b892
Code Quality Pipeline / code-quality (pull_request) Failing after 1m19s
Test Python Package / test (pull_request) Failing after 50s
added infrastructure code
2025-09-18 12:13:39 +02:00

15 lines
438 B
Python

"""
Interfaces package for visual-semiotic-ai-analysis.
Exposes repository interfaces for use throughout the project.
"""
from .annotation_repository_interface import AnnotationRepositoryInterface
from .job_repository_interface import JobRepositoryInterface
from .image_repository_interface import ImageRepositoryInterface
__all__ = [
"JobRepositoryInterface",
"ImageRepositoryInterface",
"AnnotationRepositoryInterface",
]