1/// Redis bus backend (stub — full implementation in Phase 8 cluster). 2/// Currently returns an error to make the feature boundary clear. 3pub struct RedisBus; 4 5impl RedisBus { 6 pub fn new(_url: &str) -> Self { 7 Self 8 } 9}