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

10 lines
245 B
Python
Raw Normal View History

2025-11-05 13:34:56 +01:00
"""Repositories for AI Insights Service."""
from app.repositories.insight_repository import InsightRepository
from app.repositories.feedback_repository import FeedbackRepository
__all__ = [
"InsightRepository",
"FeedbackRepository",
]