""" Puzzle 模块 - 谜题生成系统 提供多种类型的谜题生成器,支持从字符串、字典等数据源导入题目 """ from .base import BasePuzzle from .cloze import ClozePuzzle from .mcq import MCQPuzzle from .factory import PuzzleFactory from .loader import PuzzleLoader __all__ = [ 'BasePuzzle', 'ClozePuzzle', 'MCQPuzzle', 'PuzzleFactory', 'PuzzleLoader', ]