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