mirror of
https://github.com/DavidGailleton/42-Piscine_Python.git
synced 2026-03-14 05:06:55 +01:00
12 lines
261 B
Python
12 lines
261 B
Python
from .basic import lead_to_gold, stone_to_gem
|
|
from .advanced import philosophers_stone, elixir_of_life
|
|
|
|
__version__ = "1.0.0"
|
|
__author__ = "Master Pythonicus"
|
|
__all__ = [
|
|
"lead_to_gold",
|
|
"stone_to_gem",
|
|
"philosophers_stone",
|
|
"elixir_of_life",
|
|
]
|