This commit is contained in:
2025-11-01 23:13:51 +08:00
parent bf79d9ef6f
commit f689e08a1d
7 changed files with 369 additions and 57 deletions

View File

@@ -0,0 +1,19 @@
"""
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',
]