mirror of
https://github.com/cqwu-ehall/cqwu-ehall.git
synced 2024-11-23 03:17:36 +00:00
12 lines
185 B
Python
12 lines
185 B
Python
|
from .gen_pay_qrcode import GenPayQrcode
|
||
|
from .get_balance import GetBalance
|
||
|
from .get_orders import GetOrders
|
||
|
|
||
|
|
||
|
class EPay(
|
||
|
GenPayQrcode,
|
||
|
GetBalance,
|
||
|
GetOrders
|
||
|
):
|
||
|
pass
|