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