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

11 lines
274 B
Python
Raw Normal View History

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