//! Redis publisher stub — .
//! Gated on the `outbox-redis` feature flag. The actual integration
//! including adding `redis` as a workspace dependency — ships in a future
//! task once the provider dependency matrix is decided. Today this file
//! provides a type-checked placeholder so the feature flag compiles and
//! the relay binary can reference `RedisPublisher` by name.
use crate;
use crateOutboxRow;
use async_trait;
/// Delivers outbox rows to a Redis channel (stub — not yet implemented).
/// Enable with `djogi = { features = ["outbox-redis"] }`. The full
/// implementation ships once the `redis` crate dependency is added to the
/// workspace.
;