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