Common/SourceControlManagement/
mod.rs

1// File: Common/Source/SourceControlManagement/mod.rs
2// Role: Public module interface for the Source Control Management
3// (SourceControlManagement) service contract. Responsibilities:
4//   - Expose all necessary traits, DTOs, and effect constructors related to
5//     SourceControlManagement.
6
7//! # SourceControlManagement Service
8//!
9//! This module defines the abstract contract for the Source Control Management
10//! (SourceControlManagement) service, which is responsible for integrating with
11//! version control systems like Git.
12
13#![allow(non_snake_case, non_camel_case_types)]
14
15// --- Trait Definition ---
16pub mod SourceControlManagementProvider;
17
18// --- Data Transfer Objects ---
19pub mod DTO;