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)
10pub mod Keybinding;
11
12pub mod LanguageFeature;
13
14pub mod SourceControlManagement;
15
16pub mod TreeView;