Skip to content

Commit b837aa3

Browse files
committed
fix : adding VfS struct def
1 parent 68e153f commit b837aa3

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/vfs.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,10 @@ impl FileNode {
5555
}
5656
}
5757

58+
pub struct VirtualFS {
59+
pub files: Vec<FileNode>,
60+
}
61+
5862
impl VirtualFS {
5963
pub fn new() -> Self {
6064
VirtualFS { files: Vec::new() }

0 commit comments

Comments
 (0)