diff options
author | metamuffin <metamuffin@disroot.org> | 2023-01-26 09:10:23 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-01-26 09:10:23 +0100 |
commit | 42e1c3003c671e9a08d180b84bfa8e00ba858660 (patch) | |
tree | f14d0addd16ce6cf8c6a1c1292b9b5db8ddd0b09 /server/src/routes/ui/home.rs | |
parent | d48c939eb65b1b40d54644ee35e66d079789e54f (diff) | |
download | jellything-42e1c3003c671e9a08d180b84bfa8e00ba858660.tar jellything-42e1c3003c671e9a08d180b84bfa8e00ba858660.tar.bz2 jellything-42e1c3003c671e9a08d180b84bfa8e00ba858660.tar.zst |
cleanup
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; |