Skip to main content

DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/RPC/
Terminals.rs

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