mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-23 14:15:24 +00:00
Batch rename: imfs -> vfs
This commit is contained in:
21
src/vfs/mod.rs
Normal file
21
src/vfs/mod.rs
Normal 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::*;
|
||||
Reference in New Issue
Block a user