CommonLibrary/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// --- Trait Definition ---
9pub mod CommandExecutor;
10
11// --- Effect Constructors ---
12pub mod ExecuteCommand;
13
14pub mod GetAllCommands;
15
16pub mod RegisterCommand;
17
18pub mod UnregisterCommand;