git_quick_add/lib.rs
1pub mod git {
2 mod stage;
3 mod status;
4
5 pub use stage::git_add_selected;
6 pub use status::get_paths;
7}
8
9pub mod models {
10 pub mod path_items;
11 pub use path_items::PathItems;
12}
13
14pub mod ui {
15 mod select;
16 pub use select::choose_files;
17}
18
19// Re-export commonly used items at the crate root
20pub use git::{get_paths, git_add_selected};
21pub use models::PathItems;
22pub use ui::choose_files;