//! Convenience module that re-exports commonly used types and traits.
//!
//! The prelude module provides a convenient way to import all the essential
//! types and traits needed for most fcache operations in a single use statement.
//!
//! # Usage
//!
//! ```rust
//! use fcache::prelude::*;
//!
//! # fn wrapper() -> fcache::Result<()> {
//! // Create a cache and use it
//! let cache = fcache::new()?;
//! let cache_file = cache.get("example.txt", |mut file| {
//! file.write_all(b"Hello, prelude!")?;
//! Ok(())
//! })?;
//! # Ok(())
//! # }
//! ```
pub use File;
pub use ;
pub use Duration;
pub use crate::;