//! Kafka publisher stub — .
//! Gated on the `outbox-kafka` feature flag. The actual integration
//! including adding `rdkafka` 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 `KafkaPublisher` by name.
use crate;
use crateOutboxRow;
use async_trait;
/// Delivers outbox rows to a Kafka topic (stub — not yet implemented).
/// Enable with `djogi = { features = ["outbox-kafka"] }`. The full
/// implementation ships once the `rdkafka` workspace dep is added.
;