studiole-command 0.4.1

A simple command execution framework with event subscription and progress tracking.
Documentation
//! Server-side services for command execution, worker management, and progress tracking.
mod cli_progress;
mod command_events;
mod command_mediator;
mod command_progress;
mod command_registry;
mod command_runner;
mod command_status;
mod progress_writer;
mod progress_writer_factory;
mod worker;
mod worker_pool;

pub use cli_progress::*;
pub use command_events::*;
pub use command_mediator::*;
pub use command_progress::*;
pub use command_registry::*;
pub use command_runner::*;
pub use command_status::*;
pub use progress_writer::*;
pub use progress_writer_factory::*;
pub use worker::*;
pub use worker_pool::*;