Files
bakery-ia/services/ai_insights/app/repositories/__init__.py
2025-11-05 13:34:56 +01:00

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",
]