11 lines
274 B
Python
11 lines
274 B
Python
|
|
"""
|
|||
|
|
Confluence 数据获取模块
|
|||
|
|
|
|||
|
|
用于从 Confluence 获取船舶报告数据,包括故障次数、人工介入次数等。
|
|||
|
|
"""
|
|||
|
|
|
|||
|
|
from .client import ConfluenceClient
|
|||
|
|
from .vessel_reports import VesselReportManager
|
|||
|
|
|
|||
|
|
__all__ = ["ConfluenceClient", "VesselReportManager"]
|