1pub mod bootstrap;
2pub mod config;
3pub mod error;
4pub mod general;
5pub mod logger;
6pub mod middleware;
7pub mod validation;
8
9#[cfg(feature = "postgres")]
10pub mod postgres;
11
12#[cfg(feature = "redis")]
13pub mod redis;
14
15pub type AppResult<T> = Result<T, error::Error>;