use crate::{authentication::Authentication, subsonic::SubsonicResponse}; #[poem::handler] pub fn ping(auth: Authentication) -> SubsonicResponse { dbg!(auth); SubsonicResponse::new_empty() }