From 5e2e4b9d0b302289623be69ebd1a85c98a38b529 Mon Sep 17 00:00:00 2001 From: PyMaster <59120866+pystorage@users.noreply.github.com> Date: Sun, 6 Sep 2020 21:10:20 +0300 Subject: [PATCH] Delete start.py --- examples/bot/modules/start.py | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 examples/bot/modules/start.py diff --git a/examples/bot/modules/start.py b/examples/bot/modules/start.py deleted file mode 100644 index 06bb914..0000000 --- a/examples/bot/modules/start.py +++ /dev/null @@ -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 {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' - ) \ No newline at end of file