summaryrefslogtreecommitdiff
path: root/ayafs/src/memory/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ayafs/src/memory/mod.rs')
-rw-r--r--ayafs/src/memory/mod.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/ayafs/src/memory/mod.rs b/ayafs/src/memory/mod.rs
new file mode 100644
index 0000000..d1f1ab8
--- /dev/null
+++ b/ayafs/src/memory/mod.rs
@@ -0,0 +1,6 @@
+/// In-memory data structures and logic.
+/// This is where the crucial block and inode methods presented to upper calls implemented.
+pub mod cached_block;
+pub mod cached_inode;
+mod dir_entry;
+mod file_handle;