9 lines
188 B
Python
9 lines
188 B
Python
"""
|
|
Report Engine状态管理模块
|
|
定义报告生成过程中的简化状态数据结构
|
|
"""
|
|
|
|
from .state import ReportState, ReportMetadata
|
|
|
|
__all__ = ["ReportState", "ReportMetadata"]
|