Code formatting

This commit is contained in:
kdeng00
2025-07-27 14:00:15 -04:00
parent 805ab2bfcd
commit c63ec150dc
2 changed files with 20 additions and 13 deletions
+5 -3
View File
@@ -123,7 +123,10 @@ pub mod init {
crate::callers::endpoints::GETCOVERART,
get(crate::callers::coverart::endpoint::get_coverart),
)
.route(crate::callers::endpoints::STREAMSONG, get(crate::callers::song::endpoint::stream_song))
.route(
crate::callers::endpoints::STREAMSONG,
get(crate::callers::song::endpoint::stream_song),
)
}
pub async fn app() -> axum::Router {
@@ -1980,8 +1983,7 @@ mod tests {
let mut data = e.into_data_stream();
while let Some(chunk) = data.next().await {
match chunk {
Ok(_data) => {
}
Ok(_data) => {}
Err(err) => {
assert!(false, "Error: {err:?}");
}