DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/RPC/SCM.rs
1//! Source-control-management RPC service. Placeholder for git repo
2//! discovery, change tracking, commit/push operations. TODO: zero callers
3//! as of 2026-05-02.
4
5#[cfg(feature = "scm-support")]
6pub struct Struct;
7
8#[cfg(feature = "scm-support")]
9impl Struct {
10 pub fn new() -> Self { Struct }
11}
12
13#[cfg(feature = "scm-support")]
14impl Default for Struct {
15 fn default() -> Self { Self::new() }
16}