swiftide_indexing/loaders/
mod.rs

1//! The `loaders` module provides functionality for loading files from a specified directory.
2//! It includes the `FileLoader` struct which is used to filter and stream files based on their
3//! extensions.
4//!
5//! This module is a part of the Swiftide project, designed for asynchronous file indexing and
6//! processing. The `FileLoader` struct is re-exported for ease of use in other parts of the
7//! project.
8
9pub mod file_loader;
10
11pub use file_loader::FileLoader;