workflows/lib/workflow/__init__.py
bobo yang 1c0e5e045f feat: Add workflow module with command execution support
- Create workflow package with call module for script execution
- Implement workflow_call function to execute commands with arguments
- Add helper functions to locate and run workflow scripts in various paths
2025-03-11 13:26:53 +08:00

3 lines
60 B
Python

from .call import workflow_call
__all__ = ["workflow_call"]