Files
life-echo/api/payment/__init__.py

24 lines
484 B
Python
Raw Normal View History

"""
独立可复用的支付模块
支持微信支付 APP 支付和支付宝 APP 支付
"""
from .service import PaymentService
from .config import PaymentConfig
from .exceptions import (
PaymentError,
PaymentConfigError,
PaymentCreateError,
PaymentNotifyError,
PaymentQueryError,
)
__all__ = [
"PaymentService",
"PaymentConfig",
"PaymentError",
"PaymentConfigError",
"PaymentCreateError",
"PaymentNotifyError",
"PaymentQueryError",
]