gitkraft_core/features/diff/mod.rs
1//! Diff feature — types and operations for working-directory, staged, and
2//! per-commit diffs.
3
4pub mod blame;
5pub mod ops;
6pub mod types;
7
8pub use blame::{blame_file, BlameLine};
9pub use ops::{
10 checkout_file_at_commit, diff_file_commit_vs_workdir, file_list_commit_vs_workdir,
11 get_commit_diff, get_commit_file_list, get_commit_range_diff, get_single_file_diff,
12 get_staged_diff, get_working_dir_diff,
13};
14pub use types::{DiffFileEntry, DiffHunk, DiffInfo, DiffLine, FileStatus, StatusColorCategory};