Skip to main content

firebase_admin/messaging/
mod.rs

1//! Firebase Cloud Messaging: sending messages and managing topic
2//! subscriptions.
3
4pub mod client;
5pub mod error;
6mod fcm_v1;
7pub mod message;
8#[cfg(feature = "live-messaging")]
9mod token_provider;
10
11pub use client::{MessagingClient, MessagingClientBuilder, MAX_BATCH_SIZE};
12pub use error::MessagingError;
13pub use message::{
14    AndroidConfig, ApnsConfig, BatchResponse, Message, Notification, SendError, SendResult, Target,
15    TopicManagementError, TopicManagementResponse, WebpushConfig, WebpushNotification,
16};