mirror of
https://github.com/johndoe6345789/AutoMetabuilder.git
synced 2026-04-25 06:15:01 +00:00
8 lines
191 B
Python
8 lines
191 B
Python
"""Load workflow plugins by dotted path."""
|
|
from ..utils import load_callable
|
|
|
|
|
|
def load_plugin_callable(path: str):
|
|
"""Load a workflow plugin callable."""
|
|
return load_callable(path)
|