scord.py baca embed pada pesan

@client.event
async def on_message(message):
	embeds = message.embeds
    for embed in embeds:
        print(embed.to_dict())
StarbuckBarista