mirror of
https://github.com/eternnoir/pyTelegramBotAPI.git
synced 2023-08-10 21:12:57 +03:00
16 lines
538 B
Python
16 lines
538 B
Python
|
from telebot.async_telebot import AsyncTeleBot
|
||
|
from telebot import types
|
||
|
|
||
|
|
||
|
async def hello_handler(message: types.Message, bot: AsyncTeleBot):
|
||
|
await bot.send_message(message.chat.id, "Hi :)")
|
||
|
|
||
|
|
||
|
async def echo_handler(message: types.Message, bot: AsyncTeleBot):
|
||
|
await bot.send_message(message.chat.id, message.text)
|
||
|
|
||
|
|
||
|
def register_handlers(bot: AsyncTeleBot):
|
||
|
bot.register_message_handler(hello_handler, func=lambda message: message.text == 'Hello', pass_bot=True)
|
||
|
bot.register_message_handler(echo_handler, pass_bot=True)
|