10 lines
402 B
Python
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"""pipeline_sdlc 模块标准入口。
规范:模块注册函数统一为 load_<模块名>()。SDLC 的实现体在 adapter.py
(向 pipeline-service 引擎注册 step types + handlers此处提供标准入口
load_pipeline_sdlc并保留旧名 load_sdlc_adapter 兼容。
"""
from .adapter import load_pipeline_sdlc, load_sdlc_adapter
__all__ = ['load_pipeline_sdlc', 'load_sdlc_adapter']