httpward_core/config/mod.rs
1// src/config/mod.rs
2// This is the "facade" of the config module - everything else will be imported from here.
3
4pub mod global;
5mod loader;
6mod site;
7pub mod strategy;
8
9pub use global::{GlobalConfig, Listener, Route, Match, Redirect, Tls, LogConfig};
10pub use loader::{AppConfig, load};
11pub use site::SiteConfig;
12pub use strategy::{
13 Strategy, LegacyStrategyCollection as StrategyCollection, StrategyRef,
14 MiddlewareConfig, UniversalValue
15};