debian-python-lml/examples/v2/robotchef_api/robotchef_api/__init__.py

13 lines
282 B
Python

from lml.loader import scan_plugins
from robotchef_api.plugin import ( # noqa: F401
CuisineManager,
NoChefException,
)
BUILTINS = ["robotchef_api.robot_cuisine"]
scan_plugins("robotchef_", __path__, white_list=BUILTINS) # noqa: F821
cuisine_manager = CuisineManager()