import telebot
from telebot import types

TOKEN = "6056710413:AAHoCjvcD85gzwmz-hRxZoJ6pDvoGkGeUFk"
bot = telebot.TeleBot(TOKEN)

@bot.message_handler(func=lambda message: True)
def handle_all(message):
    text = "مرحباً أعزائي 👋🏻.\nتم ايقاف هذا البوت يرجى استخدام البوت الرسمي ⬇️:\n - t.me/KodoHostingBot"
    kb = types.InlineKeyboardMarkup()
    kb.add(types.InlineKeyboardButton(text="البوت الرسمي", url="https://t.me/KodoHostingBot"))
    bot.send_message(message.chat.id, text, reply_markup=kb, disable_web_page_preview=True)

if __name__ == "__main__":
    bot.infinity_polling()
