monarch-rs 0.1.0

Advanced Git Management Suite for handling multiple repositories concurrently
Documentation
//! Command execution and monitoring UI

/// Command execution status
pub enum CommandStatus {
    /// Command is pending execution
    Pending,
    /// Command is currently executing
    Running,
    /// Command completed successfully
    Success,
    /// Command failed
    Failed(String),
}

/// Command execution item
pub struct CommandItem {
    /// Repository the command is running on
    pub repository: String,
    /// Command being executed
    pub command: String,
    /// Current status
    pub status: CommandStatus,
    /// Progress (0-100)
    pub progress: u8,
}

/// Creates a new command view
pub fn create_command_view() -> anyhow::Result<()> {
    todo!("Implement command view creation")
}