10 lines
271 B
Python
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="👌")])
|