Skip to main content

DevelopmentNodeEnvironment_MicrosoftVSCodeDependency_22NodeVersion_Bundle_Clean_Debug_ElectronProfile_EsbuildCompiler_Mountain/Command/
mod.rs

1//! Commands registered at startup and dispatched via Tauri invoke handlers.
2//! Commands are grouped by domain and delegate to providers through the effect
3//! system.
4
5pub mod Bootstrap;
6
7pub mod Hover; // Atomic structure (new)
8
9pub mod Keybinding;
10
11pub mod LanguageFeature;
12
13pub mod SourceControlManagement;
14
15pub mod TreeView;