binocular/search/sources/git/mod.rs
1pub mod preview;
2pub mod scope;
3pub mod stream;
4
5pub use preview::{read_branch_preview, read_commit_preview, read_history_blob};
6pub use scope::{resolve_history_scope, resolve_repo_scope, GitSearchMode, GitSearchScope};
7pub use stream::{
8 is_current_commit, sanitize_path_field, spawn_git_searcher, CURRENT_COMMIT_REF,
9 HISTORY_PATH_SEPARATOR,
10};