forked from sultansq/kiu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
start.py
56 lines (50 loc) · 1.58 KB
/
start.py
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from typing import Union
from pyrogram.types import InlineKeyboardMarkup, InlineKeyboardButton
import config
def start_pannel(_, BOT_USERNAME, OWNER: Union[bool, int] = None):
buttons = [
[
InlineKeyboardButton(
text="اضغط لاضافتي لمجموعتك✅",
url=f"https://t.me/{BOT_USERNAME}?startgroup=true",
)
],
[
InlineKeyboardButton(
text="🗒 الاوامر",
callback_data="settings_back_helper",
),
InlineKeyboardButton(
text="المساعدة", callback_data="settings_helper"
),
],
]
return buttons
def private_panel(_, BOT_USERNAME, OWNER: Union[bool, int] = None):
buttons = [
[
InlineKeyboardButton(
text="اضغط لاضافتي لمجموعتك✅",
url=f"https://t.me/{BOT_USERNAME}?startgroup=true",
)
],
[
InlineKeyboardButton(
text="🗒 الاوامر", callback_data="settings_back_helper"
)
],
[
InlineKeyboardButton(
text="✨️ 𝙏َِ𝙊َِ𝙈 ✨️]ِ", url=f"https://t.me/DEV_TOM"
),
InlineKeyboardButton(
text="👤 مطور البوت", user_id=OWNER
)
],
[
InlineKeyboardButton(
text=" ⌞ 𝘾𝙍 • 𝙎𝙊𝙐𝙍𝘾𝙀 ⌝ ", url=f"https://t.me/pp_g3"
)
],
]
return buttons