forked from Zahidempire/Auto-Channel-Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Data.py
61 lines (44 loc) · 1.44 KB
/
Data.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
57
58
59
60
61
from pyrogram.types import InlineKeyboardButton
class Data:
# Start Message
START = """
Hey {}
Welcome to {}
You can use me to manage channels with tons of features. Use below buttons to learn more !
By @KGN_BOTS
"""
# Home Button
home_buttons = [
[InlineKeyboardButton(text="🏠 ʀᴇᴛᴜʀɴ ʜᴏᴍᴇ 🏠", callback_data="home")],
]
# Rest Buttons
buttons = [
[InlineKeyboardButton("✨ sᴜᴘᴘᴏʀᴛ ✨", url="https://t.me/KGN_OFFICIAL")],
[
InlineKeyboardButton("ʜᴇʟᴘ❔", callback_data="help"),
InlineKeyboardButton("🎪 ᴀʙᴏᴜᴛ 🎪", callback_data="about")
],
[InlineKeyboardButton("🤖ᴜᴘᴅᴀᴛᴇs", url="https://t.me/KGN_BOTS")],
]
# Help Message
HELP = """
Everything is self explanatory after you add a channel.
To add a channel use keyboard button 'Add Channels' or alternatively for ease, use `/add` command
✨ **Available Commands** ✨
/about - About The Bot
/help - This Message
/start - Start the Bot
Alternative Commands
/channels - List added Channels
/add - Add a channel
/report - Report a Problem
"""
# About Message
ABOUT = """
**About This Bot**
A telegram channel automation bot by @KGN_BOTS
Source Code : [Click Here](https://t.me/KGN_OFFICIAL)
Framework : [Pyrogram](docs.pyrogram.org)
Language : [Python](www.python.org)
Developer : [ZAHID](https://t.me/KGN_OFFICIAL)
"""