cqwu-ehall/cqwu/methods/epay/__init__.py

12 lines
190 B
Python
Raw Normal View History

2022-08-10 15:12:43 +00:00
from .gen_pay_qrcode import GenPayQrcode
from .get_balance import GetBalance
from .get_pay_bill import GetPayBill
2022-08-10 15:12:43 +00:00
class EPay(
GenPayQrcode,
GetBalance,
GetPayBill,
2022-08-10 15:12:43 +00:00
):
pass