DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/IPC/WindServiceHandlers/Output.rs
1//! # Output channel handlers
2//!
3//! `vscode.window.createOutputChannel(...)` flows in from Cocoon
4//! via gRPC; the WindServiceHandlers dispatcher (`mod.rs:648-663`)
5//! invokes one of these five free functions which emit a
6//! `sky://output/*` Tauri event for the renderer to mount /
7//! mutate / focus the channel panel.
8//!
9//! Layout (one export per file, file name = identity):
10//! - `OutputCreate::OutputCreate`
11//! - `OutputAppend::OutputAppend`
12//! - `OutputAppendLine::OutputAppendLine`
13//! - `OutputClear::OutputClear`
14//! - `OutputShow::OutputShow`
15
16pub mod OutputAppend;
17
18pub mod OutputAppendLine;
19
20pub mod OutputClear;
21
22pub mod OutputCreate;
23
24pub mod OutputShow;