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