diff options
author | metamuffin <metamuffin@disroot.org> | 2023-01-22 21:23:19 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-01-22 21:23:19 +0100 |
commit | d0197c8698a94a19d790c0e859646c3c341031e0 (patch) | |
tree | 8077922864d3218045ecbeaecd7e652fe7547c25 /server/src/config.rs | |
parent | 34cb7d576b1aec8b53cf1f6398480cf8d3fa24c7 (diff) | |
download | jellything-d0197c8698a94a19d790c0e859646c3c341031e0.tar jellything-d0197c8698a94a19d790c0e859646c3c341031e0.tar.bz2 jellything-d0197c8698a94a19d790c0e859646c3c341031e0.tar.zst |
fancy login
Diffstat (limited to 'server/src/config.rs')
-rw-r--r-- | server/src/config.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/server/src/config.rs b/server/src/config.rs index 0534f22..cffdc2f 100644 --- a/server/src/config.rs +++ b/server/src/config.rs @@ -1,12 +1,10 @@ -use std::{fs::File, path::PathBuf}; - use serde::{Deserialize, Serialize}; +use std::{fs::File, path::PathBuf}; #[derive(Debug, Deserialize, Serialize, Default)] pub struct GlobalConfig { pub brand: String, pub slogan: String, - pub icon: PathBuf, pub asset_dir: PathBuf, pub database_path: PathBuf, |