taslim19
Initial commit
80287e2
raw
history blame contribute delete
794 Bytes
from pyrogram.types import InlineKeyboardButton
import config
from Devine import app
def start_panel(_):
buttons = [
[
InlineKeyboardButton(text="sᴜᴘᴘᴏʀᴛ", url=config.SUPPORT_CHAT),
],
]
return buttons
def private_panel(_):
buttons = [
[
InlineKeyboardButton(text="ᴜᴘᴅᴀᴛᴇs", url=config.SUPPORT_CHANNEL),
InlineKeyboardButton(text="sᴜᴘᴘᴏʀᴛ", url=config.SUPPORT_CHAT),
],
[
InlineKeyboardButton(text="ᴀᴅᴅ ɪɴ ɢʀᴏᴜᴘ", url=f"https://t.me/{app.username}?startgroup=true"),
],
[
InlineKeyboardButton(text="ʜᴇʟᴘ & ᴄᴏᴍᴍᴀɴᴅs", callback_data="settings_back_helper"),
]
]
return buttons