Vine/Server/Notification/Support/mod.rs
1//! # Vine::Server::Notification::Support
2//!
3//! Reusable helpers shared by multiple notification atoms.
4//!
5//! - [`RelayToSky::Fn`] - collapse the `host.EmitToRenderer(SkyEvent,
6//! Parameter); dev_log!(tag, line);` pair that ~25 % of the notification
7//! atoms use into a one-liner call.
8//! - [`UnregisterByHandle::UnregisterByHandle`] - provider-unregistration
9//! helper shared by the five `unregister_*` atoms.
10
11pub mod RelayToSky;
12
13pub mod UnregisterByHandle;