mirror of
https://github.com/elicpeter/nyx.git
synced 2026-06-21 20:18:06 +02:00
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:
commit
ab5558f537
16 changed files with 2187 additions and 0 deletions
6
src/utils/mod.rs
Normal file
6
src/utils/mod.rs
Normal 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;
|
||||
Loading…
Add table
Add a link
Reference in a new issue