postrust_proxy/config/mod.rs
1//! Configuration types and loaders for the proxy.
2//!
3//! Supports both file-based (TOML) and database-backed configuration,
4//! with hot-reload via file watching and PostgreSQL LISTEN/NOTIFY.
5
6mod database;
7mod file;
8mod reload;
9mod types;
10
11pub use database::load_from_database;
12pub use file::load_from_file;
13pub use reload::ConfigReloader;
14pub use types::*;