flodgatt/src/config/mod.rs

11 lines
286 B
Rust

mod deployment_cfg;
mod deployment_cfg_types;
mod postgres_cfg;
mod postgres_cfg_types;
mod redis_cfg;
mod redis_cfg_types;
mod environmental_variables;
pub use {deployment_cfg::DeploymentConfig, postgres_cfg::PostgresConfig, redis_cfg::RedisConfig, environmental_variables::EnvVar};