oxi_axum_helpers/
lib.rs

1#[cfg(feature = "init")]
2mod init;
3#[cfg(feature = "init")]
4pub use init::{init_config, init_tracer};
5
6mod shutdown;
7pub use shutdown::shutdown_signal;
8
9#[cfg(feature = "static_router")]
10mod static_router;
11
12#[cfg(feature = "static_router")]
13pub use static_router::StaticHandler;
14
15#[cfg(feature = "postgres")]
16mod postgres;
17#[cfg(feature = "postgres")]
18pub use postgres::PgConfig;