1 2 3 4 5 6 7 8 9 10 11
/// Database interface and it's implementations pub mod db; /// Queue dispatchers pub mod dispatcher; /// Message implementation pub mod message; /// Interfaces for working with queue payload pub mod payload;
1 2 3 4 5 6 7 8 9 10 11
/// Database interface and it's implementations pub mod db; /// Queue dispatchers pub mod dispatcher; /// Message implementation pub mod message; /// Interfaces for working with queue payload pub mod payload;