diff options
Diffstat (limited to 'ext/fs/lib.rs')
-rw-r--r-- | ext/fs/lib.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/fs/lib.rs b/ext/fs/lib.rs index c31cdd85d..05b119e2e 100644 --- a/ext/fs/lib.rs +++ b/ext/fs/lib.rs @@ -1,10 +1,12 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. +mod in_memory_fs; mod interface; mod ops; mod std_fs; pub mod sync; +pub use crate::in_memory_fs::InMemoryFs; pub use crate::interface::FileSystem; pub use crate::interface::FileSystemRc; pub use crate::interface::FsDirEntry; |