This commit is contained in:
eric
2026-03-08 06:43:29 -05:00
parent f725104c8a
commit d77f90cb8c
8 changed files with 155 additions and 13 deletions

View File

@@ -7,8 +7,8 @@ from typing import Literal
PaymentChannel = Literal["xorpay", "zpay"]
# 当前使用的支付渠道
PAYMENT_PROVIDER: PaymentChannel = os.getenv("PAYMENT_PROVIDER", "xorpay").lower()
# 当前使用的支付渠道(默认 zpay与 /join 报名支付流程一致)
PAYMENT_PROVIDER: PaymentChannel = os.getenv("PAYMENT_PROVIDER", "zpay").lower()
# XorPay 配置
XORPAY_AID = os.getenv("XORPAY_AID", "8220")