Notion_Bot/app/handlers/message.py
2024-04-27 21:42:08 +04:00

10 lines
271 B
Python

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="👌")])