Skip to main content

termesh_git/
lib.rs

1//! Repository status model + git backend (CLI first). Phase 06.
2//!
3//! See ARCHITECTURE.md ยง7 for how this crate fits the workspace.
4#![forbid(unsafe_code)]
5
6mod diff;
7mod real;
8mod service;
9mod status;
10mod worker;
11
12pub use diff::{bounded_context_diff, bounded_diff};
13pub use real::RealGitService;
14pub use service::GitService;
15pub use status::parse_status;
16pub use worker::GitWorker;