# -*- coding: utf-8 -*- """ 核心抽象层 包含任务处理器抽象基类等核心接口定义。 """ from core.handler import TaskHandler __all__ = [ 'TaskHandler', ]