Added foundational modules for core functionalities:

- Introduced `walk.rs` as a parallel directory walker for search operations.
- Implemented basic index handling in `commands/index.rs`.
- Created `utils/config.rs` for configuration management with placeholders for future enhancements.
This commit is contained in:
elipeter 2025-06-16 16:46:22 +02:00
commit ab5558f537
16 changed files with 2187 additions and 0 deletions

6
src/utils/mod.rs Normal file
View file

@ -0,0 +1,6 @@
pub mod project;
pub mod config;
// Re-export commonly used functions for convenience
pub use project::{get_project_info, sanitize_project_name};
pub use config::Config;