Skip to main content

Mountain/RPC/
SCM.rs

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