cqwu-ehall/cqwu/methods/epay/__init__.py
brian 127fcf2df9
Support ZHCP (#8)
Co-authored-by: brian <brian@xtaolabs.com>
2023-03-23 22:31:05 +08:00

12 lines
190 B
Python

from .gen_pay_qrcode import GenPayQrcode
from .get_balance import GetBalance
from .get_pay_bill import GetPayBill
class EPay(
GenPayQrcode,
GetBalance,
GetPayBill,
):
pass