| # database/telegram.py | |
| # DEPRECATED - Telegram verification now uses remote HuggingFace API directly. | |
| # This file kept as empty stub so any old imports don't crash. | |
| """ | |
| DEPRECATED: Telegram verification database. | |
| All telegram verification now goes through auth/telegram_api.py | |
| which calls the remote HuggingFace server directly. | |
| """ | |
| def load_telegram_db(): | |
| """DEPRECATED - returns empty dict.""" | |
| return {} | |
| def save_telegram_db(data): | |
| """DEPRECATED - no-op.""" | |
| pass | |
| def get_telegram_user(user_id): | |
| """DEPRECATED - returns None.""" | |
| return None | |
| def set_telegram_user(user_id, data): | |
| """DEPRECATED - no-op.""" | |
| pass | |