mirror of
https://github.com/cqwu-ehall/cqwu-ehall.git
synced 2024-11-22 19:06:10 +00:00
127fcf2df9
Co-authored-by: brian <brian@xtaolabs.com>
12 lines
190 B
Python
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
|