DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/RPC/CocoonService/GenericNotification/mod.rs
1#![allow(non_snake_case, unused_variables, dead_code, unused_imports)]
2
3//! Generic-notification atom modules for `send_mountain_notification`.
4//!
5//! Each submodule handles one semantic group of fire-and-forget notifications
6//! from Cocoon's `MountainGRPCClient.sendNotification(method, params)` rail.
7//!
8//! Groups:
9//! - `Commands` - `registerCommand`, `unregisterCommand`
10//! - `LanguageProviders`- all `register_*_provider` messages + dispatch helper
11//! - `SkyEmit` - webview, status bar, output, progress, openExternal
12
13pub mod Commands;
14
15pub mod LanguageProviders;
16
17pub mod SkyEmit;