Skip to main content

Mountain/IPC/WindServiceHandlers/Cocoon/
mod.rs

1#![allow(unused_variables, dead_code, unused_imports)]
2
3//! Cocoon bridge atoms - renderer→Cocoon gRPC forwarding.
4//!
5//! `Request`  - two-way RPC (awaits a reply from Cocoon).
6//! `Notify`   - fire-and-forget notification (no reply expected).
7//! `ExtensionHostMessage` - binary extension-host protocol relay.
8
9pub mod ExtensionHostMessage;
10
11pub mod Notify;
12
13pub mod Request;