mirror of
https://github.com/cqwu-ehall/cqwu-ehall.git
synced 2024-11-22 11:01:20 +00:00
18 lines
227 B
Python
18 lines
227 B
Python
from .auth import Auth
|
|
from .epay import EPay
|
|
from .pay import Pay
|
|
from .users import Users
|
|
from .webvpn import WebVPN
|
|
from .xg import XG
|
|
|
|
|
|
class Methods(
|
|
Auth,
|
|
EPay,
|
|
Pay,
|
|
Users,
|
|
WebVPN,
|
|
XG,
|
|
):
|
|
pass
|