diff options
Diffstat (limited to 'server/src/routes/ui/home.rs')
-rw-r--r-- | server/src/routes/ui/home.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/server/src/routes/ui/home.rs b/server/src/routes/ui/home.rs index bbf3f70..a8d9c65 100644 --- a/server/src/routes/ui/home.rs +++ b/server/src/routes/ui/home.rs @@ -3,12 +3,12 @@ which is licensed under the GNU Affero General Public License (version 3); see /COPYING. Copyright (C) 2023 metamuffin <metamuffin.org> */ -use super::account::session::Session; -use super::layout::LayoutPage; -use crate::routes::ui::error::MyResult; -use crate::routes::ui::layout::DynLayoutPage; -use crate::CONF; -use crate::{library::Library, routes::ui::node::NodePage}; +use super::{account::session::Session, layout::LayoutPage}; +use crate::{ + library::Library, + routes::ui::{error::MyResult, layout::DynLayoutPage, node::NodePage}, + CONF, +}; use rocket::{get, State}; use tokio::fs::read_to_string; |