"""pipeline_service - 通用产线执行引擎模块""" from .init import ( load_pipeline_service, pipeline_submit, pipeline_list, pipeline_detail, pipeline_node, pipeline_modify, pipeline_pause, pipeline_resume, pipeline_cancel, pipeline_handlers, ) from .handler import register_handler, list_handlers, register_default_handler from .handlers_ktv import register_ktv_handlers from .state import ( STATE_PENDING, STATE_RUNNING, STATE_COMPLETED, STATE_FAILED, STATE_SKIPPED, TASK_SUBMITTED, TASK_RUNNING, TASK_COMPLETED, TASK_FAILED, TASK_PAUSED, TASK_CANCELLED, ) __version__ = "2.0.0"