Implementing APNs client which will handle sending notifs.
After some research, I discovered that opening new connections for every request could be treated as a DoS attack. However, reqwest can handle that, if we use the same Client and when making a request it will use keep-alive connection pooling.
Depends on D12610