10 lines
290 B
Python
10 lines
290 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, album=None):
|
|
await send_to_notion(message, album)
|
|
|
|
await message.react([ReactionTypeEmoji(emoji="👌")])
|