7 lines
134 B
Python
7 lines
134 B
Python
# services/recipes/app/repositories/__init__.py
|
|
|
|
from .recipe_repository import RecipeRepository
|
|
|
|
__all__ = [
|
|
"RecipeRepository"
|
|
] |