add /config endpoint, add docker proxy setup, and style chat box

This commit is contained in:
2025-07-13 19:33:55 -06:00
parent 74fe399cdc
commit 1793504467
12 changed files with 561 additions and 94 deletions
+4 -2
View File
@@ -224,8 +224,10 @@ pub fn load_username() -> Option<String> {
return None;
}
pub fn load_config() -> Option<GuiConfig> {
None
pub async fn load_config() -> color_eyre::Result<GuiConfig> {
color_eyre::eyre::bail!(
"there is no config on desktop because desktops cannot be configured as they are tables"
)
}
pub fn init_logging() {