gitkraft-core 0.8.8

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

pub mod actions;
pub mod ops;
pub mod types;

pub use actions::{CommitAction, CommitActionKind, COMMIT_MENU_GROUPS};
pub use ops::*;
pub use types::*;