Skip to main content

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
5#![allow(unused_imports, unused_variables)]
6
7pub mod Bootstrap;
8
9pub mod Hover; // Atomic structure (new)
10
11pub mod Keybinding;
12
13pub mod LanguageFeature;
14
15pub mod SourceControlManagement;
16
17pub mod TreeView;