rave/src/rest/ping.rs

9 lines
200 B
Rust
Raw Normal View History

2023-10-08 19:53:42 +00:00
use crate::{authentication::Authentication, subsonic::SubsonicResponse};
#[poem::handler]
pub fn ping(auth: Authentication) -> SubsonicResponse {
dbg!(auth);
SubsonicResponse::new_empty()
}