mirror of
https://github.com/cqwu-ehall/cqwu-ehall.git
synced 2024-11-22 11:01:20 +00:00
12 lines
130 B
Python
12 lines
130 B
Python
from .auth import Auth
|
|
from .epay import EPay
|
|
from .users import Users
|
|
|
|
|
|
class Methods(
|
|
Auth,
|
|
EPay,
|
|
Users
|
|
):
|
|
pass
|