cqwu-ehall/cqwu/methods/__init__.py

14 lines
158 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
from .xg import XG
2022-08-10 15:12:43 +00:00
class Methods(
Auth,
EPay,
Users,
XG,
2022-08-10 15:12:43 +00:00
):
pass