t1 / app.py
iq7se2's picture
Update app.py
3cea8d4 verified
raw
history blame contribute delete
594 Bytes
"""
ملف التشغيل على 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()