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 extensions.
3//!
4//! This module is a part of the Swiftide project, designed for asynchronous file indexing and processing.
5//! The `FileLoader` struct is re-exported for ease of use in other parts of the project.
6
7pub mod file_loader;
8
9pub use file_loader::FileLoader;