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

7 lines
121 B
Python

# services/recipes/app/services/__init__.py
from .recipe_service import RecipeService
__all__ = [
"RecipeService"
]