Skip to main content

Mountain/RPC/
SCM.rs

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