__init__.py 344 Bytes
#!/usr/bin/env python3
"""
API 包初始化文件
"""

from .api_config import API_CONFIG
from .waybill_api import query_waybill_list, generate_waybill_table, create_waybill_d
from .paperless_api import upload_clearance_file

__all__ = ['API_CONFIG', 'query_waybill_list', 'generate_waybill_table', 'create_waybill_d', 'upload_clearance_file']