Skip to main content

Mountain/RPC/
Terminals.rs

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