forked from mrismanaziz/File-Sharing-Man
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Data.py
57 lines (46 loc) · 1.86 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
# Credits: @mrismanaziz
# FROM File-Sharing-Man <https://github.com/mrismanaziz/File-Sharing-Man/>
# t.me/SharingUserbot & t.me/Lunatic0de
from pyrogram.types import InlineKeyboardButton
class Data:
HELP = """
<b> ❏ Perintah untuk Pengguna BOT
├ /start - Mulai Bot
├ /about - Tentang Bot ini
├ /help - Bantuan Perintah Bot ini
├ /ping - Untuk mengecek bot hidup
└ /uptime - Untuk melihat status bot
❏ Perintah Untuk Admin BOT
├ /logs - Untuk melihat logs bot
├ /setvar - Untuk mengatur var dengan command dibot
├ /delvar - Untuk menghapus var dengan command dibot
├ /getvar - Untuk melihat salah satu var dengan command dibot
├ /users - Untuk melihat statistik pengguna bot
├ /batch - Untuk membuat link lebih dari satu file
├ /speedtest - Untuk Mengetes kecepatan server bot
└ /broadcast - Untuk mengirim pesan broadcast ke pengguna bot
👨💻 Develoved by </b><a href='https://t.me/Lunatic0de/101'>@Lunatic0de</a>
"""
close = [
[InlineKeyboardButton("ᴛᴜᴛᴜᴘ", callback_data="close")]
]
mbuttons = [
[
InlineKeyboardButton("ʜᴇʟᴘ & ᴄᴏᴍᴍᴀɴᴅs", callback_data="help"),
InlineKeyboardButton("ᴛᴜᴛᴜᴘ", callback_data="close")
],
]
buttons = [
[
InlineKeyboardButton("ᴛᴇɴᴛᴀɴɢ sᴀʏᴀ", callback_data="about"),
InlineKeyboardButton("ᴛᴜᴛᴜᴘ", callback_data="close")
],
]
ABOUT = """
<b>Tentang Bot ini:
@{} adalah Bot Telegram untuk menyimpan Postingan atau File yang dapat Diakses melalui Link Khusus.
• Creator: @{}
• Framework: <a href='https://docs.pyrogram.org'>Pyrogram</a>
• Source Code: <a href='https://github.com/mrismanaziz/File-Sharing-Man'>File-Sharing-Man v4</a>
👨💻 Develoved by </b><a href='https://t.me/Lunatic0de/101'>@Lunatic0de</a>
"""