| """ | |
| Telegram verification database operations. | |
| """ | |
| import json | |
| from config import TELEGRAM_DB_FILE | |
| def load_telegram_db(): | |
| try: | |
| with open(TELEGRAM_DB_FILE, 'r', encoding='utf-8') as f: | |
| return json.load(f) | |
| except Exception: | |
| return {} | |
| def save_telegram_db(data): | |
| with open(TELEGRAM_DB_FILE, 'w', encoding='utf-8') as f: | |
| json.dump(data, f, indent=4, ensure_ascii=False) |