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