//! Command handlers for wasm-slim CLI
//!
//! This module contains all command implementations, organized by functionality.
//! Each submodule handles a specific CLI command.
// Re-export command functions for convenient access
pub use ;
pub use cmd_build;
pub use cmd_compare;
pub use cmd_completions;
pub use cmd_init;
pub use BuildWorkflow;