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

10 lines
245 B
Python
Raw Normal View History

2026-01-21 17:17:16 +01:00
"""Repositories for AI Insights Service."""
from app.repositories.insight_repository import InsightRepository
from app.repositories.feedback_repository import FeedbackRepository
__all__ = [
"InsightRepository",
"FeedbackRepository",
]