Common/Command/
mod.rs

1//! # Command Service
2//!
3//! This module defines the abstract contract for the Command service. It
4//! includes the `CommandExecutor` trait, which outlines the capabilities for
5//! command management, and the `ActionEffect` constructors for all
6//! command-related operations.
7
8#![allow(non_snake_case, non_camel_case_types)]
9
10// --- Trait Definition ---
11pub mod CommandExecutor;
12
13// --- Effect Constructors ---
14pub mod ExecuteCommand;
15
16pub mod GetAllCommands;
17
18pub mod RegisterCommand;
19
20pub mod UnregisterCommand;