Mountain/RPC/Windows.rs
1
2//! Window-management RPC service. Placeholder for the Grove + Cocoon
3//! extension-host roadmap (window/document/webview lifecycle). Status:
4//! not yet wired; all exports are cfg-gated behind `grove` or `cocoon`.
5
6#[cfg(any(feature = "grove", feature = "cocoon"))]
7pub struct Struct;
8
9#[cfg(any(feature = "grove", feature = "cocoon"))]
10impl Struct {
11 pub fn new() -> Self { Struct }
12}
13
14#[cfg(any(feature = "grove", feature = "cocoon"))]
15impl Default for Struct {
16 fn default() -> Self { Self::new() }
17}