fmt
All checks were successful
CI/CD Pipeline / test (push) Successful in 2m12s
CI/CD Pipeline / deploy (push) Successful in 2m5s

This commit is contained in:
2025-07-30 21:12:28 +02:00
parent 45e5c1954d
commit 12d02b286d
2 changed files with 2 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
use crate::state::AppState; use crate::state::AppState;
use std::{io::Read, sync::Arc, time::Duration}; use std::{io::Read, sync::Arc, time::Duration};
use stream_download::{ use stream_download::{
source::DecodeError, storage::temp::TempStorageProvider, Settings, StreamDownload, Settings, StreamDownload, source::DecodeError, storage::temp::TempStorageProvider,
}; };
use tokio::sync::mpsc; use tokio::sync::mpsc;

View File

@@ -2,7 +2,7 @@ mod downloader;
mod state; mod state;
mod streamer; mod streamer;
use axum::{extract::State, routing::get, Router}; use axum::{Router, extract::State, routing::get};
use state::AppState; use state::AppState;
use std::sync::Arc; use std::sync::Arc;