1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Swiss army knife utilities for all kind of Avantis rust projects

#[cfg(feature = "config")]
pub mod config;
#[cfg(any(feature = "db-sqlx", feature = "db-diesel"))]
pub mod db;
#[cfg(feature = "kafka")]
pub mod kafka;
#[cfg(feature = "pagination")]
pub mod pagination;
#[cfg(feature = "redis")]
pub mod redis;
#[cfg(feature = "telemetry")]
pub mod telemetry;