cqwu-ehall/cqwu/methods/__init__.py

12 lines
130 B
Python
Raw Normal View History

2022-08-10 15:12:43 +00:00
from .auth import Auth
from .epay import EPay
from .users import Users
class Methods(
Auth,
EPay,
Users
):
pass