Skip to main content

torrust_tracker_deployer_lib/domain/mysql/
mod.rs

1//! `MySQL` database service domain types
2//!
3//! This module defines the `MySQL` service configuration for Docker Compose topology.
4//! This is distinct from `domain::tracker::MysqlConfig` which configures the
5//! tracker's database connection settings.
6
7pub mod config;
8
9pub use config::MysqlServiceConfig;