Files
gaokao-volunteer-system/data/payments/providers/__init__.py
Hermes Agent fe11e429b9
Some checks failed
CI / pytest (Python 3.10) (push) Has been cancelled
CI / pytest (Python 3.11) (push) Has been cancelled
CI / pytest (Python 3.12) (push) Has been cancelled
feat: add local alipay provider acceptance path
2026-06-14 20:21:46 +08:00

6 lines
197 B
Python

from .alipay import AlipayProvider
from .alipay_sim import AlipaySimProvider
from .mock_gateway import MockPaymentProvider
__all__ = ["MockPaymentProvider", "AlipaySimProvider", "AlipayProvider"]