refactor backend

This commit is contained in:
Julian Freeman
2026-04-17 11:09:49 -04:00
parent 40215bcbcb
commit fd2566ca26
11 changed files with 671 additions and 599 deletions

View File

@@ -0,0 +1,6 @@
use std::collections::HashMap;
use std::sync::Mutex;
pub struct DiskState {
pub dir_sizes: Mutex<HashMap<String, u64>>,
}