@dp.message_handler(content_types =
types.ContentType.PHOTO)
async def photo(msg: types.Message):
await bot.send_photo(345234093,
msg.photo[0].file_id, "by "+msg.from_user.full_name )
@dp.message_handler(content_types =
types.ContentType.VIDEO)
async def video(msg: types.Message):
await bot.send_video(345234093, msg.video.file_id, caption = "by "+msg.from_user.full_name )