mount an atproto PDS repository as a FUSE filesystem

switch out mountpoint

Signed-off-by: oppiliappan <me@oppi.li>

oppi.li 8c332f8d 3489add0

verified
Changed files
+2 -2
src
+1 -1
readme.txt
··· 7 7 usage 8 8 ----- 9 9 10 - cargo run -- <DID/handle> 10 + cargo run -- DID|handle
+1 -1
src/main.rs
··· 32 32 let mountpoint = matches 33 33 .get_one::<PathBuf>("mountpoint") 34 34 .map(ToOwned::to_owned) 35 - .unwrap_or(PathBuf::from(&handle)); 35 + .unwrap_or(PathBuf::from("mnt")); 36 36 let _ = std::fs::create_dir_all(&mountpoint); 37 37 let resolver = resolver::id_resolver(); 38 38 let id = rt.block_on(async {