Files
42-Piscine_Python/06/alchemy/grimoire/__init__.py
T
2026-02-13 18:09:56 +01:00

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"]