Batch rename: imfs -> vfs

This commit is contained in:
Lucien Greathouse
2019-10-12 13:58:00 -07:00
parent 24c697bea7
commit 1031600c63
40 changed files with 539 additions and 545 deletions

21
src/vfs/mod.rs Normal file
View File

@@ -0,0 +1,21 @@
mod error;
mod event;
mod fetcher;
mod noop_fetcher;
mod real_fetcher;
mod snapshot;
mod vfs;
pub use error::*;
pub use event::*;
pub use fetcher::*;
pub use noop_fetcher::*;
pub use real_fetcher::*;
pub use snapshot::*;
pub use vfs::*;
#[cfg(test)]
mod test_fetcher;
#[cfg(test)]
pub use test_fetcher::*;