Move use_storage.rs under storage/

This commit is contained in:
Joshua McQuistan 2023-10-27 12:41:42 +01:00
parent bdeadba508
commit f3c87a1c50
3 changed files with 4 additions and 4 deletions

View file

@ -8,7 +8,6 @@ pub mod core;
pub mod docs; pub mod docs;
#[cfg(feature = "math")] #[cfg(feature = "math")]
pub mod math; pub mod math;
#[cfg(feature = "storage")]
pub mod storage; pub mod storage;
pub mod utils; pub mod utils;
@ -57,8 +56,6 @@ mod use_raf_fn;
mod use_scroll; mod use_scroll;
mod use_service_worker; mod use_service_worker;
mod use_sorted; mod use_sorted;
#[cfg(feature = "storage")]
mod use_storage;
mod use_supported; mod use_supported;
mod use_throttle_fn; mod use_throttle_fn;
mod use_timestamp; mod use_timestamp;
@ -111,7 +108,6 @@ pub use use_raf_fn::*;
pub use use_scroll::*; pub use use_scroll::*;
pub use use_service_worker::*; pub use use_service_worker::*;
pub use use_sorted::*; pub use use_sorted::*;
pub use use_storage::*;
pub use use_supported::*; pub use use_supported::*;
pub use use_throttle_fn::*; pub use use_throttle_fn::*;
pub use use_timestamp::*; pub use use_timestamp::*;

4
src/storage/mod.rs Normal file
View file

@ -0,0 +1,4 @@
#[cfg(feature = "storage")]
mod use_storage;
pub use use_storage::*;