gitkraft-core 0.6.6

Shared core logic for GitKraft — domain models, git operations, repository management
Documentation
1
2
3
4
5
6
7
//! Commit types and operations — list, create, and inspect commits.

pub mod ops;
pub mod types;

pub use ops::{create_commit, get_commit_details, list_commits};
pub use types::CommitInfo;