//! # Command Handlers
//!
//! This module contains organized command handlers for the stigctl CLI application.
//! Each command type is implemented in a dedicated submodule for better organization
//! and maintainability.
//!
//! ## Structure
//!
//! - `entity` - Entity management commands (create, list, delete)
//! - `system` - System management commands (create, list, get, update, delete)
//! - `component_definition` - Component definition commands (create, list, get, update, delete)
//! - `component` - Component instance commands (create, list, get, update, delete)
//! - `invariant` - Invariant management commands (create, list, get, update, delete)
//! - `shared` - Shared utilities and validation functions
pub use handle_component_command;
pub use handle_componentdefinition_command;
pub use handle_entity_command;
pub use handle_invariant_command;
pub use handle_system_command;