CommonLibrary/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// --- Trait Definition ---
14pub mod SourceControlManagementProvider;
15
16// --- Data Transfer Objects ---
17pub mod DTO;