Files
bakery-ia/services/recipes/app/repositories/__init__.py
2025-09-19 21:39:04 +02:00

7 lines
134 B
Python

# services/recipes/app/repositories/__init__.py
from .recipe_repository import RecipeRepository
__all__ = [
"RecipeRepository"
]