diff options
author | metamuffin <metamuffin@disroot.org> | 2025-04-29 11:10:21 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-04-29 11:10:21 +0200 |
commit | f62c7f2a8cc143454779dc99334ca9fc80ddabd5 (patch) | |
tree | f31dbb908715d2deb2860e2097fa13dd41d759d5 /server/src/api.rs | |
parent | 73d2d5eb01fceae9e0b1c58afb648822000c878a (diff) | |
download | jellything-f62c7f2a8cc143454779dc99334ca9fc80ddabd5.tar jellything-f62c7f2a8cc143454779dc99334ca9fc80ddabd5.tar.bz2 jellything-f62c7f2a8cc143454779dc99334ca9fc80ddabd5.tar.zst |
still just moving code around
Diffstat (limited to 'server/src/api.rs')
-rw-r--r-- | server/src/api.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/server/src/api.rs b/server/src/api.rs index f246eab..a9df1bd 100644 --- a/server/src/api.rs +++ b/server/src/api.rs @@ -4,12 +4,10 @@ Copyright (C) 2025 metamuffin <metamuffin.org> */ use super::ui::{account::login_logic, error::MyResult}; -use crate::{ - database::Database, - logic::session::{AdminSession, Session}, -}; +use crate::database::Database; use jellybase::assetfed::AssetInner; use jellycommon::{user::CreateSessionParams, NodeID, Visibility}; +use jellylogic::session::{AdminSession, Session}; use rocket::{ get, http::MediaType, |