docker_wrapper/template/database/
mod.rs

1//! Database template collection
2//!
3//! This module provides templates for various database systems:
4//! - PostgreSQL with extensions and replication support
5//! - MySQL with various storage engines
6//! - MongoDB with replica sets and sharding
7
8#[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};