mirror of
https://github.com/cqwu-ehall/cqwu-ehall.git
synced 2024-11-22 02:55:33 +00:00
ca794ea619
Co-authored-by: brian <brian@xtaolabs.com>
16 lines
197 B
Python
16 lines
197 B
Python
from .auth import Auth
|
|
from .epay import EPay
|
|
from .users import Users
|
|
from .webvpn import WebVPN
|
|
from .xg import XG
|
|
|
|
|
|
class Methods(
|
|
Auth,
|
|
EPay,
|
|
Users,
|
|
WebVPN,
|
|
XG,
|
|
):
|
|
pass
|