forked from sultansq/kiu
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsong.py
More file actions
25 lines (24 loc) · 716 Bytes
/
song.py
File metadata and controls
25 lines (24 loc) · 716 Bytes
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
from pyrogram.types import InlineKeyboardButton
import config
def song_markup(_, vidid):
buttons = [
[
InlineKeyboardButton(
text=_["SG_B_2"],
callback_data=f"song_helper audio|{vidid}",
),
InlineKeyboardButton(
text=_["SG_B_3"],
callback_data=f"song_helper video|{vidid}",
),
],
[
InlineKeyboardButton(
text="⌞ 𝘾𝙍 • 𝙎𝙊𝙐𝙍𝘾𝙀 ⌝", url=f"https://t.me/pp_g3",
),
InlineKeyboardButton(
text=_["CLOSE_BUTTON"], callback_data="close"
),
],
]
return buttons