Mountain/RPC/Processes.rs
1#![allow(non_snake_case)]
2
3//! Child-process RPC service. Placeholder for spawn + stdio + signal
4//! handling for Cocoon. Status: not yet wired; all exports are cfg-gated
5//! behind the `child-processes` feature.
6
7#[cfg(feature = "child-processes")]
8pub struct Struct;
9
10#[cfg(feature = "child-processes")]
11impl Struct {
12 pub fn new() -> Self { Struct }
13}
14
15#[cfg(feature = "child-processes")]
16impl Default for Struct {
17 fn default() -> Self { Self::new() }
18}