scan_pwd/
scan_pwd.rs

1use hashdir::DirNode;
2
3fn main() {
4  let path = std::env::current_dir().unwrap();
5  let node = DirNode::from_path(&path, &path).unwrap();
6  println!("{:#?}", node);
7}