1
2
3
4
5
6
7
8
9
10
11
12
#![doc = include_str!("../README.md")]

#[cfg(feature = "mongodb")]
mod mongo;
#[cfg(feature = "mongodb")]
pub use mongo::MongoDb;

#[cfg(any(feature = "postgres", feature = "postgres-rustls"))]
mod postgres;

#[cfg(any(feature = "postgres", feature = "postgres-rustls"))]
pub use postgres::Postgres;