Files
gitlab-instance-0a899031_pa…/app/sdk/payment/__init__.py
2026-03-10 04:42:05 -05:00

16 lines
361 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
"""
支付网关 SDK
支持 ZPAY、XorPay通过配置切换
"""
from app.payment.base import PaymentProvider
from app.payment.zpay import ZPayProvider
from app.payment.xorpay import XorPayProvider
from app.payment.factory import get_payment_provider
__all__ = [
"PaymentProvider",
"ZPayProvider",
"XorPayProvider",
"get_payment_provider",
]