rust_filesearch/px/mod.rs
1//! px - Project Switcher Module
2//!
3//! This module provides fast project management and switching capabilities
4//! with fuzzy search, frecency tracking, and editor integration.
5
6pub mod commands;
7pub mod frecency;
8pub mod index;
9pub mod project;
10pub mod search;
11
12// Re-export main types for convenience
13pub use index::ProjectIndex;
14pub use project::{CommitInfo, Project, ProjectGitStatus};