File size: 313 Bytes
21bc372 |
1 2 3 4 5 6 7 8 9 10 11 12 |
from pyrogram.types import InlineKeyboardButton, WebAppInfo
class Data:
text_help_menu = (
"**Command List & Help**"
.replace(",", "")
.replace("[", "")
.replace("]", "")
.replace("'", "")
)
reopen = [[InlineKeyboardButton("Re-Open", callback_data="reopen")]]
|