15 lines
438 B
Python
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",
|
|
]
|