diff options
| author | Laurenz <laurmaedje@gmail.com> | 2021-08-18 14:23:48 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2021-08-18 14:25:49 +0200 |
| commit | 011865ab5c8943abcb64c7b545e265d1a65db32a (patch) | |
| tree | a6c45d99909e9800d825eb3bb1edc278d2a48e6b /src/loading/mod.rs | |
| parent | 594809e35b9e768f1a50926cf5e7a9df41ba7d16 (diff) | |
Memory loader
Diffstat (limited to 'src/loading/mod.rs')
| -rw-r--r-- | src/loading/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/loading/mod.rs b/src/loading/mod.rs index 7d697310..e6cca012 100644 --- a/src/loading/mod.rs +++ b/src/loading/mod.rs @@ -2,9 +2,11 @@ #[cfg(feature = "fs")] mod fs; +mod mem; #[cfg(feature = "fs")] pub use fs::*; +pub use mem::*; use std::io; use std::path::Path; |
