Move ImfsEvent into its own module

This commit is contained in:
Lucien Greathouse
2019-10-01 10:44:35 -07:00
parent bcf4fea598
commit 1737da9c1f
6 changed files with 17 additions and 7 deletions

View File

@@ -1,4 +1,5 @@
mod error;
mod event;
mod fetcher;
mod imfs;
mod noop_fetcher;
@@ -6,6 +7,7 @@ mod real_fetcher;
mod snapshot;
pub use error::*;
pub use event::*;
pub use fetcher::*;
pub use imfs::*;
pub use noop_fetcher::*;