diff options
Diffstat (limited to 'server/src/ui/mod.rs')
-rw-r--r-- | server/src/ui/mod.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/server/src/ui/mod.rs b/server/src/ui/mod.rs index 041dadc..e71b08d 100644 --- a/server/src/ui/mod.rs +++ b/server/src/ui/mod.rs @@ -3,7 +3,10 @@ which is licensed under the GNU Affero General Public License (version 3); see /COPYING. Copyright (C) 2025 metamuffin <metamuffin.org> */ -use crate::{helper::A, locale::AcceptLanguage, CONF}; +use crate::{ + helper::{language::AcceptLanguage, A}, + CONF, +}; use error::MyResult; use home::rocket_uri_macro_r_home; use jellylogic::session::Session; |