Skip to main content

a2a_protocol_server/push/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2// Copyright 2026 Tom F.
3
4//! Push notification configuration storage and delivery.
5
6pub mod config_store;
7pub mod sender;
8
9pub use config_store::{InMemoryPushConfigStore, PushConfigStore};
10pub use sender::{HttpPushSender, PushSender};