Notion_Bot/app/handlers/message.py

10 lines
271 B
Python
Raw Normal View History

2024-04-27 21:42:08 +04:00
from aiogram.types import Message, MessageEntity, PhotoSize, ReactionTypeEmoji
from app.utils.send_to_notion import send_to_notion
async def parse_message(message: Message):
await send_to_notion(message)
await message.react([ReactionTypeEmoji(emoji="👌")])