feat: Implement Telegram bot with Claude authentication, mail service, and identity spoofing, refactoring core logic into new modules. #1

Open
mygo-kyx wants to merge 13 commits from mygo-kyx/autoClaude-TGbot:main into Feature-FromFork-Kunkun
Showing only changes of commit f9b78640b5 - Show all commits

View File

@@ -8,8 +8,9 @@ import json
import threading import threading
from pathlib import Path from pathlib import Path
_ACCOUNTS_FILE = Path(__file__).parent / "accounts.txt" _PROJECT_ROOT = Path(__file__).parent.parent
_STATS_FILE = Path(__file__).parent / "stats.json" _ACCOUNTS_FILE = _PROJECT_ROOT / "accounts.txt"
_STATS_FILE = _PROJECT_ROOT / "stats.json"
_lock = threading.Lock() _lock = threading.Lock()
# ====== 账号池(并发调度)====== # ====== 账号池(并发调度)======