apalis_core/backend/
config.rs

1use crate::backend::{Backend, queue::Queue};
2
3/// Extension trait for accessing queue configuration
4pub trait ConfigExt: Backend {
5    /// Get the queue configuration
6    fn get_queue(&self) -> Queue;
7}