-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathScript.py
22 lines (20 loc) · 798 Bytes
/
Script.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
class Script:
"""
bot greeting texts and other texts
"""
START_TXT = """
Hello {}, I am [Pyrogram Bot](https://github.com/kalanakt/Pyrogram-Telegram-Bot-Template), a simple bot.
"""
HELP_TXT = """
Add help message for users
"""
ABOUT_TXT = """
✯ My Name: [Pyrogram Bot](https://github.com/kalanakt/Pyrogram-Telegram-Bot-Template)
✯ Library: [Pyrogram v1.2.0](https://docs.pyrogram.org/)
✯ Server: [Heroku](https://dashboard.heroku.com/)
✯ Language: [Python 3.9](https://docs.python.org/3/)
✯ Database: [MongoDB](https://mongodb.com/)
✯ Base Source Code: [Pyrogram Telegram Bot Template](https://github.com/kalanakt/Pyrogram-Telegram-Bot-Template)
✯ Update Channel: [Click Here](https://t.me/TMWAD)
✯ Maintenance: [Hasnain](https://github.com/kalanakt)
"""