1 2 3 4 5 6 7
//! 队列后端实现模块 #[cfg(feature = "kafka-backend")] pub mod kafka; pub mod memory; #[cfg(feature = "redis-backend")] pub mod redis;