Skip to main content

gitkraft_core/features/log/
mod.rs

1//! Log browsing and commit search operations.
2//!
3//! This feature module has no types of its own — it uses
4//! [`CommitInfo`](super::commits::CommitInfo) from the commits feature.
5
6pub mod ops;
7
8pub use ops::{get_log, search_commits};