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>
20 lines
456 B
Python
20 lines
456 B
Python
from .check_captcha import CheckCaptcha
|
|
from .export_cookie_to_file import ExportCookieToFile
|
|
from .login import Login
|
|
from .login_with_cookie import LoginWithCookie
|
|
from .login_with_cookie_file import LoginWithCookieFile
|
|
from .login_with_password import LoginWithPassword
|
|
from .oauth import Oauth
|
|
|
|
|
|
class Auth(
|
|
CheckCaptcha,
|
|
ExportCookieToFile,
|
|
Login,
|
|
LoginWithCookie,
|
|
LoginWithCookieFile,
|
|
LoginWithPassword,
|
|
Oauth
|
|
):
|
|
pass
|