Files
42-Piscine_Python/06/alchemy/grimoire/__init__.py

7 lines
187 B
Python

from .spellbook import record_spell
from .validator import validate_ingredients
__version__ = "1.0.0"
__author__ = "Master Pythonicus"
__all__ = ["record_spell", "validate_ingredients"]