render filequeue

This commit is contained in:
sreedevk
2025-07-07 13:33:24 +00:00
parent 49b46f37f3
commit 79c0c2be3d
3 changed files with 33 additions and 12 deletions

View File

@@ -1,4 +1,4 @@
mod file;
pub mod file;
mod flags;
mod processor;
mod scanner;
@@ -26,9 +26,9 @@ pub enum Message {
}
pub struct Server {
fq: FileQueue,
dupstore: Arc<Store>,
tpool: ThreadPool,
pub fq: FileQueue,
pub dupstore: Arc<Store>,
pub tpool: ThreadPool,
}
impl Server {