1 2 3 4 5 6 7 8 9 10 11 12
pub mod app; pub mod config; pub mod controllers; #[cfg(feature = "with-db")] pub mod db; #[cfg(test)] pub mod postgres; #[cfg(feature = "worker")] pub mod queue; #[cfg(test)] pub mod redis; pub mod task;