//! Static file serving utilities for web applications.
//!
//! `ServeDir` serves files from a directory tree with index resolution,
//! precompressed-asset preference (`*.br` / `*.gz`), an SPA fallback rewrite,
//! and a canonicalize + prefix-check guard against path traversal.
//!
//! `ServeFile` serves a single file.
pub use PrecompressedPolicy;
pub use ServeDir;
pub use ServeDirBuilder;
pub use ServeFile;
pub use ServeFileBuilder;