Files
bakery-ia/services/recipes/app/repositories/__init__.py
2025-08-13 17:39:35 +02:00

11 lines
274 B
Python

# services/recipes/app/repositories/__init__.py
from .base import BaseRepository
from .recipe_repository import RecipeRepository
from .production_repository import ProductionRepository
__all__ = [
"BaseRepository",
"RecipeRepository",
"ProductionRepository"
]