First Version

This commit is contained in:
2026-07-10 15:02:09 +01:00
commit 38494a85a9
562 changed files with 196313 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
use crate::config::{ServerConfig, WebConfig};
/// Web frontend config — passed to `WebFrontend::new()`.
/// Derived from `Config` via `Config::into_split()`.
pub struct FrontendConfig {
pub server: ServerConfig,
pub web: WebConfig,
pub timezone: Option<String>,
}