send_result = send()
polling_result = dp.start_polling(bot)
await send_result
await polling_result
send_result = send()
polling_result = dp.start_polling(bot)
await asyncio.gather(send_result, polling_result)
await asyncio.gather(
send(),
dp.start_polling(bot)
)