mirror of
https://github.com/cqwu-ehall/cqwu-ehall.git
synced 2024-11-25 19:56:27 +00:00
10 lines
137 B
Python
10 lines
137 B
Python
|
from .gen_pay_qrcode import GenPayQrcode
|
||
|
from .get_balance import GetBalance
|
||
|
|
||
|
|
||
|
class EPay(
|
||
|
GenPayQrcode,
|
||
|
GetBalance,
|
||
|
):
|
||
|
pass
|