Skip to main content

Mountain/RPC/
Terminals.rs

1#![allow(non_snake_case)]
2
3//! Terminal-emulation RPC service. Placeholder for the Cocoon PTY +
4//! shell-integration roadmap. Status: not yet wired; all exports are
5//! cfg-gated behind the `terminals` feature.
6
7#[cfg(feature = "terminals")]
8pub struct Struct;
9
10#[cfg(feature = "terminals")]
11impl Struct {
12	pub fn new() -> Self { Struct }
13}
14
15#[cfg(feature = "terminals")]
16impl Default for Struct {
17	fn default() -> Self { Self::new() }
18}