Delete start.py

This commit is contained in:
PyMaster 2020-09-06 21:10:20 +03:00 committed by GitHub
parent 225bae8248
commit 5e2e4b9d0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 15 deletions

View File

@ -1,15 +0,0 @@
from .. import App
from pyrogram import Filters
@App.on_message(Filters.command(['start', 'help']))
def start_command(client, message):
message.reply_text(
f'Welcome <b>{message.from_user.first_name}</b>!\n\n'
'I will help you learn how to wrk with the <b>pykeyboard</b> library.\n\n'
'<b>Library features:</b>\n\n'
'/install - library installation\n'
'/inline_keyboard - inline keyboard\n'
'/pagination_keyboard - pagination inline keyboard\n'
'/reply_keyboard - reply keyboard'
)