File size: 880 Bytes
a8e9b84 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
from pyrogram.types import InlineKeyboardButton
import config
from DragMusic import app
def start_panel(_):
buttons = [
[
InlineKeyboardButton(
text=_["S_B_1"], url=f"https://t.me/{app.username}?startgroup=true"
),
InlineKeyboardButton(text=_["S_B_2"], url=config.SUPPORT_CHAT),
],
]
return buttons
def private_panel(_):
buttons = [
[
InlineKeyboardButton(
text=_["S_B_3"],
url=f"https://t.me/{app.username}?startgroup=true",
)
],
[InlineKeyboardButton(text=_["S_B_4"], callback_data="settings_back_helper")],
[
InlineKeyboardButton(text=_["S_B_5"], user_id=config.OWNER_ID),
InlineKeyboardButton(text=_["S_B_6"], url=config.SUPPORT_CHANNEL),
],
]
return buttons
|