1//! # findit-rs 2//! 3//! A fast and lightweight file, directory, and word search tool. 4//! 5//! Supports both a CLI and a GUI interface via the `--g` or `gui` flag. 6 7pub mod cli; 8pub mod config; 9pub mod findit; 10pub mod gui; 11pub mod utils;