fix(tools): 更新 tools/__init__.py 中的导入语句

- 将 from .doc import * 改为 from .document import *
- 这个修改统一了文档处理模块的命名,提高了代码的一致性和可读性
This commit is contained in:
carry 2025-04-15 16:31:55 +08:00
parent df9260e918
commit ca1505304e

View File

@ -1,5 +1,5 @@
from .parse_markdown import parse_markdown
from .doc import *
from .document import *
from .json_example import generate_example_json
from .model import *
from .port import *