devsper-bus 0.1.0

Distributed AI Swarm Runtime
Documentation
1
2
3
4
5
6
7
8
9
/// Redis bus backend (stub — full implementation in Phase 8 cluster).
/// Currently returns an error to make the feature boundary clear.
pub struct RedisBus;

impl RedisBus {
    pub fn new(_url: &str) -> Self {
        Self
    }
}