Mountain/Command/mod.rs
1// File: Mountain/Source/Command/mod.rs
2// Role: Public module interface for all command-related logic.
3// Responsibilities:
4// - Expose the bootstrap functionality for registering native commands.
5// - Expose specific command handler modules for organization.
6
7//! # Command Module
8//!
9//! This module is responsible for defining and registering all native
10//! (Rust-implemented) commands for the Mountain application.
11
12#![allow(non_snake_case, non_camel_case_types)]
13
14pub mod Bootstrap;
15
16pub mod Keybinding;
17
18pub mod LanguageFeature;
19
20pub mod SourceControlManagement;
21
22pub mod TreeView;