From ddcb8142b66c0fb3621047d3ff3a22c578c9a17b Mon Sep 17 00:00:00 2001 From: link2xt Date: Thu, 5 Dec 2024 08:51:54 +0000 Subject: [PATCH] docs: document `push` module --- src/push.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/push.rs b/src/push.rs index 78a4b708bf..31112bd9fd 100644 --- a/src/push.rs +++ b/src/push.rs @@ -1,3 +1,11 @@ +//! # Push notifications module. +//! +//! This module is responsible for Apple Push Notification Service +//! and Firebase Cloud Messaging push notifications. +//! +//! It provides [`PushSubscriber`] type +//! which holds push notification token for the device, +//! shared by all accounts. use std::sync::atomic::Ordering; use std::sync::Arc;