implemented read

This commit is contained in:
Moritz Gmeiner 2025-08-01 01:08:48 +02:00
commit 2b01b9ff0e
6 changed files with 149 additions and 23 deletions

View file

@ -30,9 +30,11 @@ fn main() -> anyhow::Result<()> {
})
.unwrap();
let _handle = fuser::spawn_mount2(fat_fuse, mountpoint, &options)?;
let handle = fuser::spawn_mount2(fat_fuse, mountpoint, &options)?;
rx.recv().unwrap();
handle.join();
Ok(())
}