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