taslim19
MusicV2
a8e9b84
raw
history blame contribute delete
867 Bytes
from pyrogram.types import InlineKeyboardButton, InlineKeyboardMarkup
from config import SUPPORT_CHAT
def botplaylist_markup(_):
buttons = [
[
InlineKeyboardButton(text=_["S_B_9"], url=SUPPORT_CHAT),
InlineKeyboardButton(text=_["CLOSE_BUTTON"], callback_data="close"),
],
]
return buttons
def close_markup(_):
upl = InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
text=_["CLOSE_BUTTON"],
callback_data="close",
),
]
]
)
return upl
def supp_markup(_):
upl = InlineKeyboardMarkup(
[
[
InlineKeyboardButton(
text=_["S_B_9"],
url=SUPPORT_CHAT,
),
]
]
)
return upl