/// Represents the prefix for point-to-point broadcast keys.
///
/// This constant is used to construct unique keys for point-to-point WebSocket broadcasts.
pub const POINT_TO_POINT_KEY: &str = "ptp-";
/// Represents the prefix for point-to-group broadcast keys.
///
/// This constant is used to construct unique keys for point-to-group WebSocket broadcasts.
pub const POINT_TO_GROUP_KEY: &str = "ptg-";