Mountain/ProcessManagement/mod.rs
1//! # ProcessManagement Module
2//!
3//! This module contains the core logic for managing the lifecycle of external
4//! sidecar processes, specifically the `Cocoon` extension host. It handles
5//! spawning the process, establishing communication, and performing the
6//! initial handshake.
7
8#![allow(non_snake_case)]
9
10pub mod CocoonManagement;
11
12pub mod InitializationData;