mirror of
https://github.com/cqwu-ehall/cqwu-ehall.git
synced 2024-11-22 19:06:10 +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
|