Files
bakery-ia/services/ai_insights/app/repositories/__init__.py

10 lines
245 B
Python

"""Repositories for AI Insights Service."""
from app.repositories.insight_repository import InsightRepository
from app.repositories.feedback_repository import FeedbackRepository
__all__ = [
"InsightRepository",
"FeedbackRepository",
]