journey/widgets/mod.rs
1//! Git-specific widgets layered on top of saudade's generic set.
2
3mod commit_list;
4mod diff_pane;
5mod diff_view;
6mod graph;
7mod heading;
8mod image_diff_view;
9pub mod layout;
10mod search_bar;
11mod shared;
12mod shell;
13
14pub use commit_list::{CommitList, CommitRow};
15pub use diff_pane::DiffPane;
16pub use diff_view::{DiffMode, DiffView};
17pub use graph::{Graph, GraphRow, compute_graph};
18pub use heading::Heading;
19pub use image_diff_view::ImageDiffView;
20pub use search_bar::SearchBar;
21pub use shared::Shared;
22pub use shell::Shell;