git-iris 2.0.8

AI-powered Git workflow assistant for smart commits, code reviews, changelogs, and release notes
Documentation
1
2
3
4
5
6
7
8
//! Services module for Git-Iris
//!
//! This module provides focused service layers for specific operations:
//! - `GitCommitService` - Git commit operations (create commits, hooks)

pub mod git_commit;

pub use git_commit::GitCommitService;