This commit is contained in:
Manchik
2026-05-08 22:46:47 +03:00
parent 9b7001407f
commit 13dc22f74f
30 changed files with 4107 additions and 843 deletions
+6 -4
View File
@@ -1,10 +1,11 @@
from app.core.task_manager import task_manager
from app.services.steam_guard import remove_guard, generate_2fa
from app.services.steam_password import change_password, random_password
from app.services.steam_email import change_email, validate_account
from app.services.steam_phone import change_phone
from app.services.steam_checker import check_logpass_account, full_parse_logpass_account
from app.services.steam_email import change_email, validate_account
from app.services.steam_guard import generate_2fa, remove_guard
from app.services.steam_password import change_password, random_password
from app.services.steam_phone import change_phone
from app.services.steam_token_checker import check_token_account
from app.services.steam_token_full_checker import full_check_token_account
def register_all_handlers() -> None:
@@ -18,3 +19,4 @@ def register_all_handlers() -> None:
task_manager.register_handler("logpass_validate", check_logpass_account)
task_manager.register_handler("logpass_full_parse", full_parse_logpass_account)
task_manager.register_handler("token_validate", check_token_account)
task_manager.register_handler("token_full_check", full_check_token_account)