docker_wrapper/template/database/
mod.rs1#[cfg(feature = "template-postgres")]
9pub mod postgres;
10#[cfg(feature = "template-postgres")]
11pub use postgres::{PostgresConnectionString, PostgresTemplate};
12
13#[cfg(feature = "template-mysql")]
14pub mod mysql;
15#[cfg(feature = "template-mysql")]
16pub use mysql::{MysqlConnectionString, MysqlTemplate};
17
18#[cfg(feature = "template-mongodb")]
19pub mod mongodb;
20#[cfg(feature = "template-mongodb")]
21pub use mongodb::{MongodbConnectionString, MongodbTemplate};