diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-01-24 04:31:48 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-01-24 04:31:48 +0100 |
| commit | b2e88a8beabf04adc28947cf82996e8692a68b71 (patch) | |
| tree | 23d66c8672b69cce7835ffabae4092669062ada8 /ui/src | |
| parent | 774f64c0789529884dd7a5232f190e347ad29532 (diff) | |
| download | jellything-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.rs | 6 |
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> { |