aboutsummaryrefslogtreecommitdiff
path: root/ui/src
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2026-01-24 04:31:48 +0100
committermetamuffin <metamuffin@disroot.org>2026-01-24 04:31:48 +0100
commitb2e88a8beabf04adc28947cf82996e8692a68b71 (patch)
tree23d66c8672b69cce7835ffabae4092669062ada8 /ui/src
parent774f64c0789529884dd7a5232f190e347ad29532 (diff)
downloadjellything-b2e88a8beabf04adc28947cf82996e8692a68b71.tar
jellything-b2e88a8beabf04adc28947cf82996e8692a68b71.tar.bz2
jellything-b2e88a8beabf04adc28947cf82996e8692a68b71.tar.zst
move things around; kv crate
Diffstat (limited to 'ui/src')
-rw-r--r--ui/src/lib.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/ui/src/lib.rs b/ui/src/lib.rs
index 3b04b40..f3a1282 100644
--- a/ui/src/lib.rs
+++ b/ui/src/lib.rs
@@ -17,9 +17,9 @@ use serde::{Deserialize, Serialize};
#[rustfmt::skip]
#[derive(Debug, Deserialize, Serialize, Default)]
pub struct Config {
- brand: String,
- slogan: String,
- logo: bool,
+ pub brand: String,
+ pub slogan: String,
+ pub logo: bool,
}
pub struct RenderInfo<'a> {