feat(t221): add exact-order erp connector
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
"""顺运宝 ERP 客户端。"""
|
||||
|
||||
from .client import ERPClient
|
||||
from .errors import (
|
||||
ERPAPIError,
|
||||
ERPAuthenticationError,
|
||||
ERPError,
|
||||
ERPNotFoundError,
|
||||
ERPProtocolError,
|
||||
ERPTransportError,
|
||||
)
|
||||
from .normalizer import normalize_freight_result
|
||||
|
||||
__all__ = [
|
||||
"ERPClient",
|
||||
"ERPError",
|
||||
"ERPTransportError",
|
||||
"ERPProtocolError",
|
||||
"ERPAPIError",
|
||||
"ERPAuthenticationError",
|
||||
"ERPNotFoundError",
|
||||
"normalize_freight_result",
|
||||
]
|
||||
|
||||
__version__ = "0.1.0"
|
||||
Reference in New Issue
Block a user