7 lines
121 B
Python
7 lines
121 B
Python
# services/recipes/app/services/__init__.py
|
|
|
|
from .recipe_service import RecipeService
|
|
|
|
__all__ = [
|
|
"RecipeService"
|
|
] |