Skip to main content

Mountain/IPC/WindServiceHandlers/Cocoon/
mod.rs

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