| """ | |
| ملف التشغيل على HuggingFace Spaces | |
| """ | |
| import asyncio | |
| import threading | |
| import gradio as gr | |
| from bot import run_async | |
| def start_bot(): | |
| # asyncio.run() تنشئ event loop جديد وتشغله — تشتغل من أي thread | |
| asyncio.run(run_async()) | |
| bot_thread = threading.Thread(target=start_bot, daemon=True) | |
| bot_thread.start() | |
| with gr.Blocks() as demo: | |
| gr.Markdown("## 🎌 بوت المانغا العربية") | |
| gr.Markdown("البوت يعمل على تيليغرام. هذه الصفحة فقط لإبقاء الاستضافة نشطة.") | |
| demo.launch() |