diff options
Diffstat (limited to 'server/src/logic')
| -rw-r--r-- | server/src/logic/playersync.rs | 2 | ||||
| -rw-r--r-- | server/src/logic/stream.rs | 2 | ||||
| -rw-r--r-- | server/src/logic/userdata.rs | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/server/src/logic/playersync.rs b/server/src/logic/playersync.rs index b4cc51b..6c1f9f4 100644 --- a/server/src/logic/playersync.rs +++ b/server/src/logic/playersync.rs @@ -7,7 +7,7 @@ use rocket_ws::{stream::DuplexStream, Channel, Message, WebSocket}; use serde::{Deserialize, Serialize}; use tokio::sync::broadcast::{self, Sender}; -use crate::helper::cors::Cors; +use crate::request_info::cors::Cors; #[derive(Default)] pub struct PlayersyncChannels { diff --git a/server/src/logic/stream.rs b/server/src/logic/stream.rs index 36d2ec1..55d6850 100644 --- a/server/src/logic/stream.rs +++ b/server/src/logic/stream.rs @@ -3,7 +3,7 @@ which is licensed under the GNU Affero General Public License (version 3); see /COPYING. Copyright (C) 2026 metamuffin <metamuffin.org> */ -use crate::{helper::A, ui::error::MyError}; +use crate::{request_info::A, ui::error::MyError}; use anyhow::{anyhow, Result}; use jellycommon::{api::NodeFilterSort, stream::StreamSpec, NodeID, TrackSource}; use jellylogic::{node::get_node, session::Session}; diff --git a/server/src/logic/userdata.rs b/server/src/logic/userdata.rs index 2dd3a85..104de4a 100644 --- a/server/src/logic/userdata.rs +++ b/server/src/logic/userdata.rs @@ -3,7 +3,7 @@ which is licensed under the GNU Affero General Public License (version 3); see /COPYING. Copyright (C) 2026 metamuffin <metamuffin.org> */ -use crate::{helper::A, ui::error::MyResult}; +use crate::{request_info::A, ui::error::MyResult}; use jellycommon::{ api::NodeFilterSort, routes::u_node_id, |