cflx 0.6.20

Conflux – a spec-driven parallel coding orchestrator that runs AI agents on git worktrees
1
2
3
4
5
6
7
8
9
10
//! Event definitions and sending helpers for parallel execution.
//!
//! This module now re-exports ExecutionEvent from the unified events module
//! and provides compatibility aliases.

// Re-export the unified event type
pub use crate::events::{send_event, ExecutionEvent};

// Type alias for backward compatibility
pub type ParallelEvent = ExecutionEvent;