mirror of
https://github.com/cqwu-ehall/cqwu-ehall.git
synced 2024-11-22 11:01:20 +00:00
60c32861ea
Co-authored-by: brian <brian@xtaolabs.com>
14 lines
158 B
Python
14 lines
158 B
Python
from .auth import Auth
|
|
from .epay import EPay
|
|
from .users import Users
|
|
from .xg import XG
|
|
|
|
|
|
class Methods(
|
|
Auth,
|
|
EPay,
|
|
Users,
|
|
XG,
|
|
):
|
|
pass
|